Form Redirection Query

Hello all,

I have a form on my website

echo ‘’;

echo 'Search: ';
echo ‘’;

echo ‘’;

when the “Go!” is activated I need it to return the input from the user as such

/search.php?startrow=0&search=whatever

However no matter what I try, all it will ever return is

/search.php?search=whatever

I can’t impliment my startrow anywhere. Have tried in the FORM ACTION. Have even tried to rename the INPUT TEXT to reflect, but it just doesn’t work.

Is there a way for me to even get the startrow=0 up after what is submitted by user.

Much obliged,

use a hidden field inside the form:

echo ‘’;

Sponsor our Newsletter | Privacy Policy | Terms of Service