serial Posted March 11, 2007 Share Posted March 11, 2007 hi im just wondering how i would set 3 or 4 cookies and then open a webpage with these cookie? Link to comment https://forums.phpfreaks.com/topic/42183-multiple-cookies/ Share on other sites More sharing options...
fert Posted March 11, 2007 Share Posted March 11, 2007 how i would set 3 or 4 cookies [/quote] Just call the setcookie function multiple times. Link to comment https://forums.phpfreaks.com/topic/42183-multiple-cookies/#findComment-204620 Share on other sites More sharing options...
serial Posted March 11, 2007 Author Share Posted March 11, 2007 should i do it like: <?php setcookie("ChallUID=840"); setcookie("ChallUNAME-serial_2k"); setcookie("POSTNUKESID=blah"); $url = "http://www.something.com"; $page = file_get_contents($url"); echo $page; ?> when i do this it says access dnied need to set the cookies Link to comment https://forums.phpfreaks.com/topic/42183-multiple-cookies/#findComment-204622 Share on other sites More sharing options...
fert Posted March 11, 2007 Share Posted March 11, 2007 setcookie("POSTNUKESID=blah"); That will create a cookie that's empty, http://us2.php.net/manual/en/function.setcookie.php and the access denied part sounds like a server problem. Link to comment https://forums.phpfreaks.com/topic/42183-multiple-cookies/#findComment-204625 Share on other sites More sharing options...
serial Posted March 11, 2007 Author Share Posted March 11, 2007 ok what i have to do is set the cookies to view certain information on a page then get the information on the page and then send it back. I can get the information on the page without cookies using the header(); function but can't get a certain line of text which i need to get so im using file_get_contents() but it the page reads You broke the cookie that was set on your system. Access denied to this service because the cookies arnt setting Link to comment https://forums.phpfreaks.com/topic/42183-multiple-cookies/#findComment-204626 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.