Hi!
I have a problem with sessions. When I try:
and I set value of session I can see it on the page:
but when I try to get the value on some other page it doesn’t work.
How can I solve it?
Thanks.
I have a problem with sessions. When I try:
| Code: |
| <?php
$username = (string) $_POST['username']; session_start(); ?> |
and I set value of session I can see it on the page:
| Code: |
| <?php
$_SESSION[username] = $username; echo "username = ".$_SESSION[username]; ?> |
but when I try to get the value on some other page it doesn’t work.
How can I solve it?
Thanks.
