skipifconnectfailure.inc 517 B

1234567891011121314151617
  1. <?php
  2. require_once('connect.inc');
  3. if ($skip_on_connect_failure) {
  4. if ($socket)
  5. $myhost = sprintf("%s:%s", $host, $socket);
  6. else if ($port)
  7. $myhost = sprintf("%s:%s", $host, $port);
  8. if (!$link = @mysql_connect($myhost, $user, $passwd, true, $connect_flags))
  9. die(sprintf("skip Can't connect to MySQL Server - [%d] %s", mysql_errno(), mysql_error()));
  10. if (!@mysql_select_db($db, $link))
  11. die(sprintf("skip Can't connect to MySQL Server - [%d] %s", mysql_errno(), mysql_error()));
  12. mysql_close($link);
  13. }
  14. ?>