hey, i got a small problem printing a session or a cookie for example :
page_cookie.php
setcookie("my_cookie","hello",time()+3600);
test_cookie.php
echo "$my_cookie";
another example :
page_session.php
$_SESSION["mysession"] = "hello";
test_session.php
echo "$_SESSION[mysession]";
in these examples it doesn't print me the values of the cookie and the session.
why does it happen!? 🙁