Here are lines 6-10 of my code: if (mysqli_connect_errno()) { echo 'Error: Could not connect to database. Please try again later.'; exit; }
eelixduppy
7:58 pm on Apr 30, 2012 (gmt 0)
There are no errors here. Are you sure you have the correct lines?
jdial
8:01 pm on Apr 30, 2012 (gmt 0)
I think I fixed it by using this code as a model: <?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); }
// some code
mysql_close($con); ?>
eelixduppy
8:05 pm on Apr 30, 2012 (gmt 0)
Cool, glad you figured it out.
jdial
8:07 pm on Apr 30, 2012 (gmt 0)
Thanks for your help, eelixduppy. I'm not sure why the other coding didn't work, but this at least is working for me.