PHP forums, MySQL forums, Web Development resources

Home PageHome    PHP ResourcesTopic List    FAQFAQ    SearchSearch    MemberlistMemberlist    UsergroupsUsergroups 
 RegisterRegister
    ProfileProfile    Log in to check your private messagesLog in to check your private messages    Download the RSS Reader RSS Feed Download the RSS Reader RSS for this forum Log inLog in 

PHP Forum :: MySQL Forum :: Java Script Forum



Problem with Cookies

 
Post new topic   Reply to topic    WeberForums.com Forum Index -> PHP General
View previous topic :: View next topic  
Author Message
alex
Guest





PostPosted: Wed Feb 17, 1999 8:39 pm    Post subject: Problem with Cookies Reply with quote

I tried to send cookie using
php3 , but always fails.It gave warn on screen. Who can help me?
Back to top
Jeroen J.J. Eck
Guest





PostPosted: Sun Feb 21, 1999 12:08 pm    Post subject: RE: Problem with Cookies Reply with quote

The cookie stuff should be placed BEFORE your HTML code. Something like:
<?PHP
$value="Alex firts cookie";
SetCookie("TestCookie",$value,time()+3600); /* expire in 1 hour */
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>

etc etc.

The cookie can be read via the netx code:
(just put the code somewhere in the <body> part)
<?PHP
echo "Your cookie value is: ";
echo $TestCookie;
?>

Good luck
Jeroen
Back to top
Display posts from previous:   
WeberTrivia Questions WeberTrivia Questions
 Think you are smart? Prove it!. Try your skills with these questions :
 WeberTrivia QuestionsRecursive arrays and multi-dimensional arrays are one and the same. (PHP and MySQL)
 WeberTrivia QuestionsThe \"cache_dir\" tag of the squid configuration has a default of /var/spool/squid. (Linux)

WeberTrivia Questions



Post new topic   Reply to topic    WeberForums.com Forum Index -> PHP General All times are GMT + 2 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum






Powered by phpBB © 2001, 2005 phpBB Group
PHP Forum :: MySQL Forum :: Java Script Forum