LaundroMat
Programmer
Hmm.
In order to produce dynamic pages, I add variables to my URLs (e.g.: "index.php?chapter=2"
. The chapter variable is read through $_REQUEST.
Now, I would like to create a form (say: form.php) that sends what has been inputted to index.php?chapter=2. In form.php, I've created a hidden field:
In order to test, I've added
on index.php. At first, this returns the desired values.
But!
Upon refreshing the page (ie index.php), Opera hangs at the beginning of the page (ie: it does not crash, it simply stops loading the page). IE on the other hand pops up a requester stating I should resubmit my data (coming from form.php) if I want to refresh.
Anyone?
In order to produce dynamic pages, I add variables to my URLs (e.g.: "index.php?chapter=2"

Now, I would like to create a form (say: form.php) that sends what has been inputted to index.php?chapter=2. In form.php, I've created a hidden field:
Code:
<input type="hidden" name="chapter" value="2">
In order to test, I've added
Code:
print_r($_REQUEST)
But!
Upon refreshing the page (ie index.php), Opera hangs at the beginning of the page (ie: it does not crash, it simply stops loading the page). IE on the other hand pops up a requester stating I should resubmit my data (coming from form.php) if I want to refresh.
Anyone?