I moved my php and mysql code from WinXP to Linux and found some problems occur.
I got this warning and solved it when the code was running in WinXP. Now it comes again. Session value seems can not be passed:
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /.../search.php:4) in /.../search.php on line 19
here is the code:
</HEAD>
<body>
<?php
session_start(); //line19
Can someone know why is it like this?
Thanks.