Linux NG/Lists wrote:
<?php
error_reporting(E_ALL);
ini_set('display_errors','On');
@ $db=new mysqli('localhost','whil','secret','test');
get rid of the @, it will squelch your error output
if (mysqli_connect_errno())
{echo 'Error ­ could not connect to database.';
exit;
}
?>

put something at the end like [DONE] or something so you can see if it is getting past that if statement.


--
Jim Lucas

   "Some men are born to greatness, some achieve greatness,
       and some have greatness thrust upon them."

Twelfth Night, Act II, Scene V
    by William Shakespeare

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to