I want to be able to pass info from one page to another w/out the use of a form.
I tried to use $_POST['someIndex'] = "test", but that doesn't work because I can't assign a post like that. I have to use forms.
I tried using $SESSION. It works to a certain extent...
For example, $SESSION['someIndex'] = "test 1" is set on page 2.
When I go to page 2 and try to change the value
$_SESSION['someIndex'] = "test 2"
It does not work...i get nothing displayed when I echo the value.
If I do $_SESSION = FALSE, it means I ended the session...so I guess when I change the value it ends the session.
So, does anyone know how I can transfer one value to the next page w/out the use of a submit form?