Dear all,
I want to store some information like user_name, country_name etc and need to be available through out the session.
1. what will be the best way to achieve this?
2. I have the following code to $_session variable but have no result.
page1.php session_start;
$_SESSION['country_no']=1;
page2.php session_start;
echo "here is session variable=".$_SESSION['country_no'];
exit;
Regards: