Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other MySQL Connection? Re: MySQL Connection?

#64350
Rob MacKay
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!";

}