every time i want to write the script i force to get all variables from previous page. like as:
$t1=$_REQUEST['t1'];
$a5=$_REQUEST['a5'];
$s3=$_REQUEST['s3'];
$w8=$_REQUEST['w8'];
....
is there any way to get all variables from previous page and save in variable? like as:
foreach($_REQUEST as $k => $v)
{
$k=$_REQUEST[$k];
}
but i think $k=$_REQUEST[$k]; is not correct. what is soloution?
thanks