cookie in php

A

Anonymous

Guest
Hi all,

I have made on my site a register form where they have to fill in their name, paswoord, nickname ...

I want to store these values into a cookie and store it on their pc.
Can somebody tell me how to do this ?

Thanks
 
-[Bl@de Runner said:
-"]Hi all,

I have made on my site a register form where they have to fill in their name, paswoord, nickname ...

I want to store these values into a cookie and store it on their pc.
Can somebody tell me how to do this ?

Thanks
Hi where!
If you have a problem with cookie RTFM my dear friend RTFM in manual it's very good documentary: http://www.php.net/manual/en/function.setcookie.php

If you can't understand:
Code:
<?php
setcookie (<variable>, <value>, <time>,<path>,<domain>,<securityLevel>);
?>
 
Back
Top