Hey, I keep getting the same error messages when trying to fire up sessions in this
code i wrote. i've written some test scripts to test sessions on my machine, and they
are working, so the problem must lie within my code. Here' what I'm getting, anyone
know how to resolve this?
Warning: Cannot send session cookie - headers already sent by (output started at
C:\Program Files\Apache
Group\Apache\htdocs/store/index.php:2) in ../../wpdbcon.php on line 14
Warning: Cannot send session cache limiter - headers already sent (output started at
C:\Program Files\Apache
Group\Apache\htdocs/store/index.php:2) in ../../wpdbcon.php on line 14
wpdbcon.php --------------
<?
$db = "mydb";
$user = "mybot";
$pw = "mypw";
$mysql_access = mysql_connect("localhost", $user, $pw);
mysql_select_db($db, $mysql_access);
session_start();
if (!session_is_registered('cart') {
$cart = array();
session_register('cart');
}
?>
i also tried doing
if (!session_is_registered('cart') {
$cart = array();
session_register('cart');
}
else {
session_start();
}
i thought it was sending conflicting data when it was trying to initialize, didn't
work either.
thanks in advance.