OK, bit of a newb with cookies, just trying to get my head round them but I can't seem to be able to get them to work.
Here is my code:
I'm getting the following error:
Warning: Cannot modify header information - headers already sent by (output started at C:\WEB\APACHE\htdocs\Archive\php_sandbox\cookies.php:6) in C:\WEB\APACHE\htdocs\Archive\php_sandbox\cookies.php on line 6
I've done a Google and whilst there seem to be lots of results, nothing seems to provide a solution.
Any ideas?
Thanks
Here is my code:
PHP:
<html>
<head>
<title>Cookies</title>
</head>
<body>
<?php setcookie('test', 45, time()+(60*60*24*7)); ?>
</body>
</html>
I'm getting the following error:
Warning: Cannot modify header information - headers already sent by (output started at C:\WEB\APACHE\htdocs\Archive\php_sandbox\cookies.php:6) in C:\WEB\APACHE\htdocs\Archive\php_sandbox\cookies.php on line 6
I've done a Google and whilst there seem to be lots of results, nothing seems to provide a solution.
Any ideas?
Thanks