on main form i have this script
if(isset($REQUEST['dkey'])){$dkey=$REQUEST['dkey'];}
if(!empty($dkey))
{
echo"not e ...";
$dkey=unserialize($dkey);
echo "<br>value from array-$dkey[page]";
}else{
echo"empty...";
}
on second form, where i click the link i have this code
$dkey[page]='look_2';
$dkey=serialize($dkey);
<a href='index.php?dkey=$dkey'>test</a>
and why always i get on main form that dkey is empty ?
anybody can help ?
thanks , thanks