Zatvori prvu forumu, pa otvori novu...
Znači:
<form action='search.php' method='get'>
<input type='text' name='upit' length='20'>
<button type='submit'>Traži</button></form>
<form action='advancedsearch.php' method='get'><button type='button'>Napredno</button></form>
Takođe preporučujem da, zbog kompatibilnosti sa starim browserima, umesto
<button type="submit">ISPISANI TEKST</button>
koristiš
<input type="submit" value="ISPISANI TEKST">
Tako da bi sve to trebalo da izgleda:
<form action='search.php' method='get'>
<input type='text' name='upit' length='20'>
<input type='submit' value='Traži'></form>
<form action='advancedsearch.php' method='get'><input type='submit' value='Napredno'></form>