954,600 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Error connecting to mysql

Hi Experts,
I am getting this error message, "Error connecting to mysql"
whenever i am running the below scripts:

<?php
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = 'password';
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
$dbname = 'petstore';
mysql_select_db($dbname);
?>

I've just set-up everything and still getting such error...
By the way, I am using Windows Vista and IIS 7.0, Could you please help me? suggestions please, recommendations...

Robert Plant
Newbie Poster
2 posts since Aug 2009
Reputation Points: 10
Solved Threads: 0
 

Replace the connect with this:

$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die (mysql_error());


It will show you what's wrong, or guide you in the right direction.

pritaeas
Posting Expert
Moderator
5,484 posts since Jul 2006
Reputation Points: 653
Solved Threads: 875
 

make sure that u have entered the right password and use mysql_error(); function to find out what the problem is.

duraid121
Newbie Poster
2 posts since Aug 2009
Reputation Points: 10
Solved Threads: 0
 

Hi Experts, I am getting this error message, "Error connecting to mysql" whenever i am running the below scripts:

<?php
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = 'password';
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
$dbname = 'petstore';
mysql_select_db($dbname);
?>

I've just set-up everything and still getting such error... By the way, I am using Windows Vista and IIS 7.0, Could you please help me? suggestions please, recommendations...


check if all your services are working.

Control Panel\Administrative Tools\Services look for MySQL is started

Checked also the system properties environment variables if your MYSQL is in PATH.

phpbeginners
Posting Whiz in Training
226 posts since Jul 2009
Reputation Points: 12
Solved Threads: 32
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You