Check if Internet is reachable
<?php if (!$sock = @fsockopen('www.google.com', 80, $num, $error, 5)) echo 'offline'; else echo 'OK'; ?>