domenica 24 agosto 2008

[Php] Add-a-site-in-GooGle

Descrizione
Consente di addare un sito in GooGle senza dover recarsi su http://www.google.com/addurl/.

Codice
<?
$url = $_POST['url'];
$descr = $_POST['descr'];
if ($url!=''){
echo "<html><head></head><body><center><h1>Il tuo sito è stato aggiuto al database di Google!</h1><br><b>Url:</b> $url<br><b>Descrizione:</b> $descr<br><br><iframe src=\"http://google.com/addurl?q=$url&dq=$descr&submit=\" width=\"800\" height=\"600\"></iframe></center></body></html>";
}
else{
echo "<html>
<head>
<title>Add a site in GooGle</title>
</head>
<body>
<center>
<h1>
Add Sites In GooGle
</h1>
<center>
<form name=\"form1\" action=\"add.php\" method=\"Post\">
<b>
Url:
</b>
<input id=\"1\" type=\"text\" name=\"url\" Size=\"50\" Style=\"Color: #000000\">
<br>
<br>
<b>
Descrizione:
</b>
<br>
<textarea id=\"2\" type=\"text\" name=\"descr\" width=\"200px\" height=\"200px\" style=\"color: #000000\"></textarea>
<br>
<br>
<input type=\"submit\" name=\"invia\" value=\"Invia\">
<br>
<br>
</form>
</center>
</body>
</html>"
;
}
?>

0 commenti: