Posted by Carl Vondrick on 07/30/06 23:11
> Well, is there a way to solve this "strange" problem? I am not able to
> configure php for web servers are not running on my computer.
Are you starting your sessions AFTER output?
Example:
Hello!
<?php
session_start();
/* do stuff */
?>
This will cause PHP to rewrite. If you do this, however, you will avoid
that:
<?php
session_start();
?>
Hello!
<?php
/* do stuff */
?>
Carl
Navigation:
[Reply to this message]
|