I was wondering how can I pass multiple dynamic url parameters to my pagination pages when a user searches the site using PHP & MySQL in order to display their results?
Here is the HTML form.
<form action="search.php" method="post">
<input type="text" name="search" />
<input type="submit" name="submit" value="Search" />
</form>
Here is my pagination link
echo '<a href="search.php?s=' . ($start + $display) . '&p=' . $pages . '">'. $i .'</a>';