vote up 0 vote down star

I'm developing on my Mac notebook, I use MAMP. I'm trying to set a cookie with PHP, and I can't. I've left off the domain, I've tried using "\" for the domain. No luck.

setcookie("username", "George", false, "/", false);
setcookie("name","Joe");

I must be missing something obvious. I need a quick and simple solution to this. Is there one?

I'm not doing anything fancy, simply loading (via MAMP) the page, http://localhost:8888/MAMP/lynn/setcookie.php

That script has the setcookie code at the top, prior to even writing the HTML tags. (although I tried it in the BODY as well). I load the page in various browsers, then open the cookie listing. I know the browsers accept cookies, because I see current ones in the list. Just not my new one.

flag

is it that you cannot see the cookie in the browser or that it's not returning to PHP on the next page visit (var_dump($_COOKIE))? – Nerdling Mar 10 at 19:19
I can't see the cookie in the browser, or rather under the cookie listings in various browsers. – lynn Mar 10 at 19:21
Is there any whitespace before the opening php tag <?php ? E.g., is the < really the document's first byte? – Simon Mar 10 at 19:28
The whitespace was indeed the problem. – lynn Mar 11 at 12:56

2 Answers

vote up 1 vote down check

From the docs:

setcookie() defines a cookie to be sent along with the rest of the HTTP headers. Like other headers, cookies must be sent before any output from your script (this is a protocol restriction). This requires that you place calls to this function prior to any output, including and tags as well as any whitespace.

Is that it?

edit:

Can you see the cookie being sent by the server, e.g. by using the Firefox extension Tamper Data, or telnet? Can you see it being sent back by the browser on the next request? What's the return value of setcookie()? Is it not working in all browsers, or just in some?

link|flag
Doesn't appear to be the problem. – lynn Mar 10 at 19:18
Any blank lines in the PHP script before the setcookie() call? Or perhaps even blank lines before the first <?php ? – Jarret Hardie Mar 10 at 19:27
Yes!! That was it. – lynn Mar 10 at 19:30
vote up 0 vote down
<?php
ob_start();
if (isset($_COOKIE['test'])) {
    echo 'cookie is fine<br>';
    print_r($_COOKIE);
} else {
    setcookie('test', 'cookie test content', time()+3600);  /* expire in 1 hour */
    echo 'Trying to set cookie. Reload page plz';    
}

Try this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.