cookie
Posted: Mon Jul 12, 2004 3:48 pm
I have problems with cookies.
to set up cookie I use this and it works
how to read from cookie?
to set up cookie I use this and it works
Code: Select all
<?php
$expires_soon = date("l, d-M-y H:i:s", time() + 54000);
setcookie( "email=$email; expires=$expires_soon;");
setcookie( "lozinka=$lozinka; expires=$expires_soon;");
?>