Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have php5.2.9 +mysql5.1+apache2.2.6 installed on win xp. I'm not able get php connect with mysql. here is the code.`

<? php 
$link=mysql_connect('localhost','root','godismine');

if(!$link) 
echo "fail"; 

else echo "success"; 

mysql_close(); 
 ?>

i don't think there is any error in code. phpinfo is showing mysql support so it cant be installation issue. iam jst not able get the prob. whenever i run this script i just get a blank screen. please help. iam new in php .

share|improve this question
Is the space in <?php really intended? If so, remove it. – Gumbo May 3 '09 at 6:53

2 Answers

Let MySQL tell you what the error is...

<?php 
$link=mysql_connect('localhost','root','godismine');

if(!$link) { echo "fail "; echo 'and the error message is: '.mysql_error(); } else { echo "success"; mysql_close($link); }

share|improve this answer

Did you create users/grant rights in the database as well? In any case, connecting as root is not really a good idea.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.