A cookie was set on this page! Refresh this page in order to see the value of the cookies you created
<?php
setcookie("santi_mail", $_GET['email'] , time()+36000);
setcookie("santi_name", $_GET['name'] , time()+36000);
setcookie("santi_nick", $_GET['nick'] , time()+36000);
?>
<html>
<body>
<p>
A cookie was set on this page! The cookie will be active when
the client has sent the cookie back to the server.
<br><br>
<?php
if ( isset($_COOKIE['santi_mail']) ) { echo( $_COOKIE['santi_mail'] ); }
if ( isset($_COOKIE['santi_name']) ) { echo( $_COOKIE['santi_name'] ); }
if ( isset($_COOKIE['santi_nick']) ) { echo( $_COOKIE['santi_nick'] ); }
?>
</p>
</body>
</html>