Forum Moderators: coopster

Message Too Old, No Replies

$ session variables

         

nadeem14375

8:08 am on Oct 3, 2012 (gmt 0)

10+ Year Member



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:

rainborick

5:45 pm on Oct 3, 2012 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I'd suggest that you check to make sure that the server is set up properly to support sessions. Run your test again, and then check the server error logs to see if there was a problem opening the sessions file. You may have to use ini_set() to point 'session.save_path' to a writable directory. phpinfo() will show you where the system currently expects to see the sessions data file.

nadeem14375

4:32 am on Oct 4, 2012 (gmt 0)

10+ Year Member



Thankds rainborick,

the problem was with session_start;
I forget to mention ();

thank you so much.