<?
require_once ("claseurlcheck.php");
if ($Comprueba)
	{$UrlCheck = new urlcheck ($Url);
	$Mensaje = "ESTA VIVO: ".$Url."<br>\n";
	if (!$UrlCheck->IsAlive()){ $Mensaje = "NO ESTA VIVO: ".$Url."<br>\n"; }
	echo $Mensaje;}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
	<title>Untitled</title>
</head>
<body>
<form action="<?=$PHP_SELF?>" method="POST">
	<input type="hidden" name="Comprueba" value="si">
	Url: <input type="Text" name="Url" size="50"><br><br>
	<input type="submit" value="comprueba">
</form> 
</body>
</html> 
  |