sorry I don't understand stilll ..
see I have a form (in template) whose action is "page.php?do=search" via post method. On hitting Submit button it simply goes to the below code, executes the query and all, and results fine.
PHP Code:
if ($_REQUEST['do'] == 'search')
{
$category=$_REQUEST["cat"];
$order=$_REQUEST["order"];
}
Now, my problem is that the URL of the results page displays
page.php?do=search and NOT appending the variables, how do I do it ??? how do i append $category and $order values to it ??
Thank You