I am trying to send over a page number to a page using a html form. The problem is every-time the form is submitted, it overwrites the page GET value, with all the other GET values being sent over from the form.
the form is below
<form action="searchPage.php?page=0" method="get">
<label for="search" id="searchLabel">Search:</label>
<input type="text" size="30" name="search" id ="search" value="<?php echo $_GET['search'] ?>" />
<label for="XML" id="XMLLabel">XML</label>
<input type="checkbox" name="XML" value="Xml" />
<input type="submit" value="Search" name="searchButton" id="searchButton" />
<input type="submit" value="Browse" name="browseButton" id="browseButton" />