Re: [PHP-DB] Newbie inserting into a database

2004-05-14 Thread Daniel Clark
Remove the single quotes or change to double quotes around the variables.

 Here is what I have so far?
 ?
 $DBname = testdatabase;
 $host=localhost;
 $user=root;
 $password = password;


 $dbconnect = @mysql_connect('$host','$user','$password','$DBname');

 I know this is wrong since I am not connecting.

 What I want to do is INSERT several values into a database.  What am I
 doing
 wrong and what do I need to do after I connect (The Code)?  7 day old
 problem here and pulling at my hair!  Appreciate it!

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Newbie inserting into a database

2004-05-14 Thread Daniel Clark
Remove the single quotes or change to double quotes around the variables.
(in the mysql_connect() statement)


 Here is what I have so far?
 ?
 $DBname = testdatabase;
 $host=localhost;
 $user=root;
 $password = password;


 $dbconnect = @mysql_connect('$host','$user','$password','$DBname');

 I know this is wrong since I am not connecting.

 What I want to do is INSERT several values into a database.  What am I
 doing
 wrong and what do I need to do after I connect (The Code)?  7 day old
 problem here and pulling at my hair!  Appreciate it!

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php