ricerca.html
<FORM name=searchtool action=resultcerca.php method=post>
<p align="center">
<INPUT class=inputform size=45 name=word>
nel sito <input type="radio" value="normale" checked name="opzioni">
nel web <input type="radio" value="esterno" name="opzioni">
<input type=submit value=cerca>
</form>
resultcerca.php
<?
if($opzioni=="normale"){
.. codice ricerca sito ..
}
else{
.. codice ricerca web ..
}
?>