Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

dropshippers
low cost magazines
programmershelp

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


check if a site id sown

This will use the fsockopen function to try and connect to a site,

<?php
$site = fsockopen('www.google.com', 80);
// check if the website is found
if(!$site)
{
echo'Site down';
}
else
{
echo'Site is online';
}

?>