querystring question
I'm trying to use a simple html form, but after submitting the existing variables are replaced.
So if I submit a form on a page like index.php?page=1 with a form
<form><input name="chapter">1</input></form>
it sends me to index.php?chapter=1 while I need index.php?page=1&chapter=1.
I know I could put the page variable in the form, but there should be an easier way (I gave 1 variable as an example, but there could be more).
I'm trying to use a simple html form, but after submitting the existing variables are replaced.
So if I submit a form on a page like index.php?page=1 with a form
<form><input name="chapter">1</input></form>
it sends me to index.php?chapter=1 while I need index.php?page=1&chapter=1.
I know I could put the page variable in the form, but there should be an easier way (I gave 1 variable as an example, but there could be more).






