I use this in my form, <input type="Text" name="value<?php echo $count; ?>" >
where $count is user input - from this I get, value1 = ... value2 = ... ....
how can I access these using $HTTP_POST_VARS[' ... '] ??
thanks
$HTTP_POST_VARS["value1"];
or
$_POST["value1"];
not $count but only count
not $value1 but only value1
thanks, but since I have a user input $count, I would like to print out using a for-loop
for ($i = 1; $i < $count; $i++ ) { // something like this -> $value[$i] = $HTTP_POST_VARS['value[$i]'] }