Hello ppl
I have this code :-
<?phpif(isset($value))
{
SetCookie("mycookie",$value,time()+3600);
}
?>
<html>
<head>
<title>Cookie test script</title>
</head>
<body>
<?php print('mycookie = ' . $mycookie); ?>
<form action="" method="post">
Type value: <input name="value" type="text">
<input name="submit" type="submit">
</form>
</body>
</html>
The problem is when i execute it, there are no cookies created by my internet explorer.
How do i create cookies?