Hi,
This is my 1st time to use session and got the following warning "session_start(): Cannot send session cache limiter - headers already sent" on the line session_start(), i've searched the solutions on the web for 2 days. And most of the cases are the space or lines appear in front of "<?php" or "?>" but i have checked many times to ensure there's no space or lines there and i still get this warning.
Could you help me to solve this problem?
Thanks.
--- Here is my coding ---
*** index.php ***
<?php
session_start();
require("config.php");
?>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
.........coding to retrieve data from MySQL............
</body>
</html>
<?php
mysql_free_result($result);
mysql_close($connection);
?>
*** config.php ***
<?php
$connection = mysql_connect('server','id','password') or die('cannot connect DB!');
$db = mysql_select_db('db', $connection) or die ('cannot select DB');
...... some functions ......
?>
Best Regards,
K23
This is my 1st time to use session and got the following warning "session_start(): Cannot send session cache limiter - headers already sent" on the line session_start(), i've searched the solutions on the web for 2 days. And most of the cases are the space or lines appear in front of "<?php" or "?>" but i have checked many times to ensure there's no space or lines there and i still get this warning.
Could you help me to solve this problem?
Thanks.
--- Here is my coding ---
*** index.php ***
<?php
session_start();
require("config.php");
?>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
.........coding to retrieve data from MySQL............
</body>
</html>
<?php
mysql_free_result($result);
mysql_close($connection);
?>
*** config.php ***
<?php
$connection = mysql_connect('server','id','password') or die('cannot connect DB!');
$db = mysql_select_db('db', $connection) or die ('cannot select DB');
...... some functions ......
?>
Best Regards,
K23