I couldn't find reference, but I'm sure there is a way to query mySQL to see if a connection can be made and if not, continue building the page.
I tried:
$connect = mysql_connect("hostname","password","username");
if($connect){
} else {
}
but I still get error that I am unable to connect to the mySQL.
Thanks
Ron