i want to send a header to set a cookie somewhere in my php. can i do that or it must be at the start of the page before anything else be sent?
Can i write Header (setcookie...) ? do you know any possible way to do it?
Thanks a lot
um, do you have to use a header? you can just use this:
<?
setcookie('name', 'value');
?>