Jump to content

PHP SESSION[HELP NEEDED]


canishk

Recommended Posts

I am trying to implement session variables in my new php project.

 

I would like to know can i set and get variables in session...

 

my current program contains:

 

page 1:

 

Code:

              session_start();
         $_SESSION['$uid']=$u;

 

 

page 2:

 

Code:

 

 

 session_start();
       $u=$_SESSION['$uid'];
       echo("$u");

 

 

but i got this warning with the result..

 

 

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent

 

 

how can i solve this??

 

please help

Link to comment
https://forums.phpfreaks.com/topic/69502-php-sessionhelp-needed/
Share on other sites

The session seems to have already been started, therefore it maybe set to start automatically in php.ini, therefore you don't need to call 'session_start();'.

 

Also you won't be able to use newly set session variables until the page has changed... that sounds strange but try it...

Where is that snippet of code? session_start() should not be used after ANY output to the browser, this includes html or stray spaces like so:

 


<?php
    session_start();
?>

 

OR

 

<p>hello</p>
<?php
    session_start();
?>

 

^ Those will cause that error.

 

 

as for rarebit saying newly set session variables aren't accessible until after the next page load: I don't think that's right. It's true for cookie variables, I can say for sure. But can someone else confirm it's the same for sessions? Or can you (rarebit) provide quotation from the documentation where it says so?

Try it! It's from a book i've got, i've not lloked for it in the php docs but enough people complain about the error on here... please prove it wrong... i'll go try it now, cos I agree it doesn't make sense as to why, other than it's stored by the server not the interpreter?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.