I have two pages in one page i am posting values in array
///////////////
for($i=0;$i<$tenant;$i++)
echo "<tr><td><input type=\"text\" size=\"17\" maxlength=\"20\" name=\"name.$i\"></td><td><input type=\"text\" size=\"17\" maxlength=\"4\" name=\"cur.$i\"></td><td><input type=\"text\" size=\"17\" maxlength=\"4\" name=\"prev.$i\"></td><td><input type=\"text\" size=\"17\" maxlength=\"1\" name=\"room.$i\"></td></tr>";
\\\\\\\\\\\\\\\\\\
then how to catch those values in array in the second page
i can see the value posted as
/////////////
Array
(
[name_0] => Lakhan
[cur_0] => 511
[prev_0] => 506
[room_0] => 1
[name_1] => Rabi
[cur_1] => 297
[prev_1] => 292
[room_1] => 1
[name_2] => Sunil
[cur_2] => 2428
[prev_2] => 2400
[room_2] => 2
[amount] => 1200
)
/////////////////
by impkying echo command
/////////////////////////
<?php
echo "<PRE>";
print_r($_POST);
echo "</PRE>";
//how to keep the value in array which have been received in this script i tried but not succeded