Jump to content

Lost connection to MySQL server during query


mariocesar

Recommended Posts

I runned this registration code on godaddy hosting with no problems, now I run the same code on ippower and give this message " Lost connection to MySQL server during query in ......." here is the config.php code

 

<?php 
$dbhost='****';
$dbusername='****';
$dbuserpass='***';
$dbname='****';
// connect to the mysql database server.
mysql_connect ($dbhost, $dbusername, $dbuserpass);
mysql_select_db($dbname) or die('I cannot select the database because: ' . mysql_error());

?>

 

any idea why, thanks

They're posted in this cross-posted thread as well in case not enough people saw them here -

http://www.phpfreaks.com/forums/index.php/topic,231718.msg1074433.html#msg1074433

 

mariocesar, did you check out the link to that error message in the manual that was posted in your other thread to see if anything it mentioned applied to what your code is going?

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.