下面是代码。当我尝试提交时,我得到了数组值,直到164,其余的都没有来。数组的总值为225。
<?php
if($maxproducts=="") { $maxproducts=30;}
for($i=1;$i<=225;$i++) { ?>
<tr bgcolor="#ffffff">
<td valign="top">Product Name:<br>
<input type="text" name="<?php echo "pcode[$i]" ?>" value="<?php echo $pcode[$i]; ?>" size="15">
</td>
<td valign="top">$<br>
<input type="text" name="<?php echo "price[$i]"; ?>" value="<?php echo $price[$i]; ?>" size="1">
</td>
<td valign="top">Product/Sales URL:<br>
<input type="text" name="<?php echo "plink[$i]"; ?>" value="<?php echo $plink[$i]; ?>" size="25">
</td>
<td valign="top">Aff. Resource Page:<br>
<input type="text" name="<?php echo "presource[$i]"; ?>" value="<?php echo $presource[$i]; ?>" size="20">
</td>
<td valign="top">Download URL:<br>
<input type="text" name="<?php echo "pthanks[$i]"; ?>" value="<?php echo $pthanks[$i]; ?>" size="27">
</td>
<td valign="top">Autoresponder Listname:<br>
<input type="text" name="<?php echo "pAR[$i]"; ?>" value="<?php echo $pAR[$i]; ?>" size="15">
</td>
</tr>
<?php } ?>