Hi
I need to concat to a $HTTP_POST_VARS[].
<form method='post'>
$row_count = 0;
while($rows = mysql_fetch_array($result))
{
echo"
<tr>
echo"
<td><input name='AddPages$row_count' type='radio' value='1' checked='checked' />True<input name='AddPages$row_count' type='radio' value='0' />False</td>";
$row_count++;
}
<input type='submit' action=$PHP_SELF&$PHPSESSID />
</form>
At the receiving end I need to create an array of AddPages1, AddPages2, etc
for($i = 0; $i < $size; $i++)
$arr[$i] = $HTTP_POST_VARS[AddPages
...this is where I need to concat $i...
];
Everything I tried has failed with syntax errors.
Thanks.
dave