Hi guys'n'gals ;)

I am very new to the world of PHP, and still trying to get my foot in the
door. Not doing too bad so far, good fun it all is... but i am having a
problem working out what exactly the problem is here with sessions.

Here is the code for page one of the tutorial, i copied it straight from
codewalkers.com in the 'sessions' tutorial...

<HTML>
<BODY>
<?
        //Page 1 using sessions!!!
        session_start();
        $_SESSION["real_name"] = "Hartleigh Burton";
        print "<A href='page2.php'>Go to this page.</A>";
?>
</BODY>
</HTML>

...and here are the errors that i receive in my browser when loading...

Warning: Cannot send session cookie - headers already sent by (output
started at E:\Webroot\tutorial\page1.php:3) in
E:\Webroot\tutorial\page1.php on line 5

Warning: Cannot send session cache limiter - headers already sent (output
started at E:\Webroot\tutorial\page1.php:3) in
E:\Webroot\tutorial\page1.php on line 5

Warning: open(/tmp\sess_97999e1abf7d49da95469a65786cd945, O_RDWR) failed:
No such file or directory (2) in E:\Webroot\tutorial\page1.php on line 5

I am currently using... PHPv4.2.2 W32, Apachev1.3.27, and MySQLv3.23.53.
Any light that anyone may be able to shine on my problem would be greatly
appreciated. :)



Hartleigh Burton
www.channel-x.org



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to