<? function urlfind($link)
{
if($link)
{ $file = @fopen ("$link", "r");
}
if($file)
{ return true ;
fclose($file);
}
}
if($link !="")
{
if((urlfind($link))=="true")
{
echo "your link exists";
}
else
{
echo "your link doesn't exists" ;
}
}
?> <html>
<head>
</head>
<body bgcolor="ccdfed">
<h2>Link Checker</h2>
<form action="linkzend.php" method=post>
<font face="verdana" size=1>
<table border=0>
<tr><td>
Verify your link(e.g: http://zend.com)
</td>
</tr>
<tr>
<td><input type=text name=link size="40" >
</td></tr>
<tr><td>
<input type="submit" value="Verify">
</td></tr>
</table>
<br>
<a href="http://openit.de/~sultan/">from : Sultan Zahir Khan</a><br>
<a href="mailto://sultanzahir@yahoo.com">email : sultanzahir@yahoo.com</a></font>
</body>
</html>
|
|