httpwebwitch

msg:3599508 | 1:44 pm on Mar 13, 2008 (gmt 0) |
The javascript looks syntactically correct. try this quick test: <?php print($_COOKIE['pollchoice']); ?>
|
Achernar

msg:3599576 | 2:48 pm on Mar 13, 2008 (gmt 0) |
Why do you write javascript code from php? You should either test the cookie in js, or write #pollarea's content directly in php. There is no use for js here.
|
Br3nn4n

msg:3599915 | 8:30 pm on Mar 13, 2008 (gmt 0) |
Okay, I got it working. @Achernar, not sure quite what you mean....could you please explain more?
|
Achernar

msg:3600125 | 1:32 am on Mar 14, 2008 (gmt 0) |
Since you're testing the cookie in php, why are echoing javascript that write html ? It would be simpler to write directly: <div id="pollchoice"><?php if (isset($_COOKIE['pollchoice'])) echo "poll results here"; ?></div> |
| or, if you don't need the empty div: <?php if (isset($_COOKIE['pollchoice'])) echo "<div id=\"pollchoice\">poll results here</div>"; ?> |
|
|
|