Hello,
I am trying to email data from a form previously used in an earlier version of Chronoform. Now in Chronoform V4 I am getting errors.
The top half of the form works but when it comes to the table options that is where I get " value=""> instead of the data inputted.
I have attached a few screenshots to show you and the code I am using below. Any help in solving this would be appreciated.
Thank you
I am trying to email data from a form previously used in an earlier version of Chronoform. Now in Chronoform V4 I am getting errors.
The top half of the form works but when it comes to the table options that is where I get " value=""> instead of the data inputted.
I have attached a few screenshots to show you and the code I am using below. Any help in solving this would be appreciated.
Thank you
<td colspan="4"><br><br>
<table cellpadding="0" cellspacing="3" border="1" bordercolor="#CCCCCC" width="100%" align="center" style="text-align:center ">
<tr>
<td><font style="font-weight:bold">#</font></td>
<td><font style="font-weight:bold">Name</font></td>
<td><font style="font-weight:bold">Size</font></td>
<td><font style="font-weight:bold">N/M</font></td>
<td><font style="font-weight:bold">Home</font></td>
<td><font style="font-weight:bold">Away</font></td>
<td><font style="font-weight:bold">Qty</font></td>
</tr>
<?php for($i=1; $i<=28; $i++){ ?>
<tr>
<td><input type="text" size="3" name="num<?php echo $i; ?>" value=""></td>
<td><input type="text" size="20" name="nameshirt<?php echo $i; ?>" value=""></td>
<td><input type="text" size="3" name="size<?php echo $i; ?>" value=""></td>
<td><input type="text" size="2" name="NM<?php echo $i; ?>" value=""></td>
<td><input type="text" size="2" name="home<?php echo $i; ?>" value=""></td>
<td><input type="text" size="2" name="away<?php echo $i; ?>" value=""></td>
<td><input type="text" size="2" name="qty<?php echo $i; ?>" value=""></td>
</tr>
<?php } ?>
</table>
</td>
</tr>
</table>
<input type="submit" value="Submit">