Ti reasta da realizzare la paginetta stupida per il form e sostituire alle stringhe con l'indirizzo web il contenuto del campo del form.Codice PHP:
<?php
preg_match('/<title>(.*?)<\/title>/',file_get_contents("http://www.google.it/"), $match);
print_r($match[1]."
");
preg_match('/<title>(.*?)<\/title>/', file_get_contents("http://www.html.it/"), $match);
print_r($match[1]."
");
?>