View Single Post
Old 2005-03-14, 01:34 PM   #3
Barron
You tried your best and you failed miserably. The lesson is 'never try'
 
Join Date: Oct 2004
Posts: 166
Thats not much information to go on, but from what info you gave:

You either didnt create the database using myPHPadmin or similar admin interface and enter the info correctly in the script:

example:
$connect=mysql_connect("localhost", "mysql username", "mysql password");

Or,
you didnt give the script the correct name of the database:

example:
$connect=mysql_connect("localhost", "mysql username", "mysql password");
$db=mysql_select_db("data base name YOU created");

Or,
Usually the next step in the script is to create the "tables" that go in the database. You may not have uploaded the files that hold that info.
Barron is offline   Reply With Quote