How do I go about getting this snippet of code to work correctly:
for ( $suits=1; $suits<=$NumberofSuits; $suits++ ) {
echo "<tr><td>
<table width='100' border=0 cellspacing=0 cellpadding=0>
<tr>
<td>" .$_POST['Description$suits']. "</td>
</tr>
</table>
</td>
</tr>
}
I have a preceeding "form screen" that contains multiple instances of "Suit Descriptions". For example, "Description1, Description2, Description3, etc."
Thanks,
Robert