First of all, before header() or setcookie() can't be any outputing code
(like html).
And here if you do:
<?php
header("Location: index.php");
setcookie(blah);
....
Nothing else but header() will be run, since it will move you to the
index.php file.
P.S. Notice the space: header("Location: index.php");
Niklas
-----Original Message-----
From: George Pitcher [mailto:[EMAIL PROTECTED]]
Sent: 14. syyskuuta 2001 12:47
To: [EMAIL PROTECTED]
Subject: [PHP] another easy cookie question
Hi all,
This is what I have at the top of my php page (php-4.0.6-winNT).
<html>
<head>
<?php
header("Location:index.php");
setcookie("Cookievalue", "abcdefghijklmnopqrstuvwxyz0123456789")
time()+3600);
?>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
I get the following error.
CGI Error
The specified CGI application misbehaved by not returning a complete set of
HTTP headers. The headers it did return are:
... and nothing else!
Where am I going wrong? I bet it's a simple answer.
George P in Edinburgh
_________________________________________________________ Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]