i got this error msg in online... how to solve this
problem... i couldnot find out as soon as possible send me
answer or idea


COULD NOT ABLE TO CONNECT DATABASE .
Can't connect to local MySQL server through socket
'/usr/local/mysql-5.0/data/mysql.sock' (2)

Answers were Sorted based on User's Feedback



i got this error msg in online... how to solve this problem... i couldnot find out as soon as possi..

Answer / asheesh

database connection was not established yet that's why this
error is occuring.

$con=mysql_connect("localhost","root","password") or die
(mysql_error());
$link=mysql_select_db('test',$con);
if(!$link)
{
die(mysql_error());
}
"root" is the user name
"test" is the database name

Is This Answer Correct ?    4 Yes 0 No

i got this error msg in online... how to solve this problem... i couldnot find out as soon as possi..

Answer / ritu

First you have to make a database connection. coding is below mention:
first u have to create a connection to server like:
mysql_connect("localhost","root","");

then select the database like:
mysql_select_db("database_name");

localhost is default server name.
root is default user name.
"" is default password. it means password is blank.

Is This Answer Correct ?    2 Yes 1 No

i got this error msg in online... how to solve this problem... i couldnot find out as soon as possi..

Answer / shweta

database name must be wrong or you can use IP address
instead of 'localhost'.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More PHP Interview Questions

What is difference between strstr() and stristr() in PHP?

0 Answers  


How can we extract string "pcds.co.in" from a string "https://info@pcds.co.in" using regular expression of php? More on reg can you explain

0 Answers  


Who created numbers?

0 Answers  


what are the various PHP Script Optimization techniques?

1 Answers   IBM, Krify Software Technologies, TCL,


How do I run a php file?

0 Answers  






Name the Functions in IMAP, POP3 AND LDAP?

2 Answers  


What is difference between count or sizeof function in php?

0 Answers  


How can we get the properties (size, type, width, height) of an image using PHP image functions?

4 Answers   ConSim,


What is a base url?

0 Answers  


I have written a source code in php but I do not know how to compile that and conduct it with a website please explain me the how to compile that ?

1 Answers  


What is namespaces in PHP?

0 Answers  


What is php and its advantages?

0 Answers  


Categories