I'v tried the following script (from examples):
<head><title></title></head>
<body>
<?php
session_start();
$my_session_variable = "some value";
session_register( "my_session_variable");
?>
</body>
and got:
Warning: Cannot send session cookie - headers already sent by (output started at c:\apache\htdocs\reg_ses.php:4) in c:\apache\htdocs\reg_ses.php on line 6
Warning: Cannot send session cache limiter - headers already sent by (output started at c:\apache\htdocs\reg_ses.php:4) in c:\apache\htdocs\reg_ses.php on line 6
I'm running Appache 1.3.12 on WinNT 4.0 service pack 6.0.;
Browsers IE5.0 and Netscape6.0.
What's wrong ?
Mr_Valro