Search Form Problem with paged reults
Posted: Thu May 14, 2009 3:47 am
Hi
I have a page that submits a form that returns paged results.
This works for the first page but when I click on page 2 nothing is displayed.
I think it has to do with my form and the action. At the moment I have:
and further down I have:
Is this correct?
Thanks
I have a page that submits a form that returns paged results.
This works for the first page but when I click on page 2 nothing is displayed.
I think it has to do with my form and the action. At the moment I have:
Code: Select all
<form name="Search" method="post" action="search.php?go" id="searchform"> Code: Select all
if(isset($_GET['go'])){.............Thanks