Home › Forums › Other › MySQL Connection? › Re: MySQL Connection?
September 18, 2009 at 6:04 am
#64350
Participant
well if you are connection with PHP you could use the "or die" or use if/else…
$stmt = connection();
if($stmt) {
echo "heck yea!";
} else {
echo "no dice!";
}