Jump to content

Multiple Cookies


natalieG

Recommended Posts

We are trying to set multiple cookies with this script and  says on second cookie that
headers are already sent. How do we set multiple cookies in one file? It also never prints
out  the cookie values-last line.

Thanks,
Jennifer

<?php
if (setcookie("ABC", $value, time()+3600)){echo 'Cookie-abc Sent';}
else {echo 'cookie-abc not sent';}
if (setcookie("DEF", $value, time()+3600)){'cokkie-def sent';}
else {echo 'cookie-def not sent';}
$ABC=$_COOKIE['ABC'];
$DEF=$_COOKIE['DEF'];
print "$ABC<BR>$DEF";
?>
Link to comment
https://forums.phpfreaks.com/topic/15293-multiple-cookies/
Share on other sites

You cannot send output to the browser if you wish to send more cookies / headers.

if (setcookie("ABC", $value, time()+3600)){echo 'Cookie-abc Sent';}

{echo 'Cookie-abc Sent';}

is what is causing the error.

Read the stickys.
http://www.phpfreaks.com/forums/index.php/topic,37442.0.html
Link to comment
https://forums.phpfreaks.com/topic/15293-multiple-cookies/#findComment-61845
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.