Hello,
I tried making use of session variables for my php pages. The coding i wrote is like this,
session_start();
$strLogin_id=$loginid;
$strPassword=$password;
echo $password;
echo $strLogin_id;
session_register("Login_ID");
session_register("Password");
$Login_ID=$strLogin_id;
$Password=$password;
The bowser gave me 3 warnings, they are
1)Warning: open(/tmp/sess_e421c2fcdbfb22e2d8fbaa795e6d94b5, O_RDWR) failed: m (2) in c:\inetpub\wwwroot\ajitpz\phpjobshop2\search_page.php3 on line 2
2)Warning: open(/tmp/sess_e421c2fcdbfb22e2d8fbaa795e6d94b5, O_RDWR) failed: m (2) in Unknown on line 0
3)Warning: Failed to write session data. Please check that the current setting of session.save_path is correct (/tmp) in Unknown on line 0
Please tell me how i can sort this out.I also tried changing session_auto_start()=1 in php.ini
Bye,
Ajit