
Originally Posted by
JPnyc
$connect = mysql_connect("localhost","root",""); is telling the program to look for the database at the very root of your file directory, which you're telling me is not where it's located. That should be changed to reflect the actual path C:\wamp\
Okay. How would I do that?
Tried to do it like that...
Code:
$connect = mysql_connect("C:\wamp\","root","");
... and didn't work.