Hi... if you know something about my problem , please ... tell me.
I am tying to manage cookies, y wrote setcookie(name,value...) in a php program ...then in another php program i was tried to watch in the screen with the echo $value instruction ... like the manual said ...however no data is shown in the screen.
I was tested the variables into the cookies with the print(name) instruction ...and the values appears in the screen ...but sometimes.
If i open a new browser and do the same ... the data dont appears ! 🙁
What is my mistake ?
........................................................................
"valida.php" contains :
setcookie("namecookie",$name );
$namecookie = $name;
"display.php" contains :
<? echo $namecookie ?>
.........................................................................