I have a list of hidden fields in a table with dates in them. i then pass them to a page that should get the variables from them but it doesnt can anyone help please.
These are the hidden fields:
<input type='hidden' name='date_0' value='1072915200'>
<input type='hidden' name='date_1' value='1073001600'>
<input type='hidden' name='date_2' value='1073088000'>
This is my code to retrive them:
for ($counter=0; $counter<$total_days; $counter++)
{
$name = "date_".$counter;
$date_stamp = $_REQUEST[$name];
echo $date_stamp."<br>";
}
This is what i want it to output:
1072915200
1073001600
1073088000