Hi,
If i turned OFF in php.ini file
magic_quotes_gpc = Off;
my code is working finely, when by using unserialize.
Problem here:
If i turned ON in php.ini file
magic_quotes_gpc = On;
echo "<br>";
echo "<table>";
echo "<tr><td><b>confirm</b></td><td><a href='test.php?cname=confirm&cid=".base64_encode($id)."&code=".base64_encode($pcode)."&pname=".serialize($name)."'>Confirm</a></td>";
echo "</table>";
($name is an array).Not unserialised--problem here
$arr=unserialize($_REQUEST['pname']);
unserialize is not happening.please help me out thanks