hi,
print "<tr><td><b>click</b></td><td><a href=test.php?id=$id&code=$pcode&name=$pname§ion=$psection target=\"_blank\">Click</a></td></tr>";
I am passing all the values to test.php through hyperlink.
Problem is:
I can able to get only id and code.
$pid=$_REQUEST; // values getting
$pcode=$_REQUEST; //values getting
$pname=$_REQUEST; // values not getting
$psection=$_REQUEST; // values not getting
I don't know to find what mistake am doing ? Am getting all the values from the
home page
correctly and am not able to send all the values to the
test.php page
. Thanks.