amigo esto es lo que hice y no se si esta bien pero igual me funciona en el localhost. espero su ayuda gracias.
Código PHP:
function verificar_url($url)
{$r=$_POST['url'];
//abrimos el archivo en lectura
$id = @fopen($r,"r");
//hacemos las comprobaciones
if ($id) $abierto = true;
else $abierto = false;
//devolvemos el valor
return $abierto;
//cerramos el archivo
fclose($id);
}
Código PHP:
if (!isset($_POST['url']))
{
<form action="index-hosting.php" method="post">
<p align="center" class="style4">Chequea la disponibilidad del sitio </p>
<p>Indica la dirección con la cual quieres contar: </p>
<p><strong>ejemplo: http://www.mipaginaquequiero.com</strong></p>
<p align="center"><br>
<input type="Text" size="25" maxlength="100" name="url" value="http://">
<input type="Submit" value="Comprobar!"></p>
</form>
Código PHP:
}
else
{
$abierto = verificar_url($_POST['url']);
if ($_POST['url']=="http://")
{
<p> </p>
<p align="center"> </p>
<p align="center">Debe ingresar una direccón de correo. </p>
<p align="center">Si Quiere Chequear otra disponibilidad click <a href="index-hosting.php">aqui....</a>
Código PHP:
exit;
} else
if ($abierto) {
</p>
<p> </p>
<p> </p>
<p align="center"><strong>Ese Dominio</strong> <a href="
>" target="_blank">
</a><strong> se encuentra ya registrado!</strong></p>
<p align="center">Si Quiere Chequear otra disponibilidad click <a href="index-hosting.php" >aqui....</a>
</p>
<p align="center">
<p align="center"> </p>
<p align="center"><? echo "La URL no existe o es inaccesible..."; ?></p>
<p align="center">Si Quiere Chequear otra disponibilidad click <a href="index-hosting.php" >aqui....</a>