Jim Moseby wrote:
[snip]
$query = "INSERT INTO user (name,password) VALUES
("'.$username.'","'.$password.'") ";
Try that... should work. your query syntax is mangled.
Backwards on your quotes Jay. Go home and get some sleep. ;)
[/snip]
Damn these corporate mergers!
Corrected query
$query = "INSERT INTO user (name,password) VALUES
('".$username."','".$password."') ";
Why not:
$query = "INSERT INTO user (name,password) VALUES>
('$username','$password')";
Or:
$query = "INSERT INTO user (name,password) VALUES('$username','$password')";
...rather.
JM
It does not seem to be putting anything into the DB. Gives no errors,
but I check PHP My Admin, and there is nothing in the users and
passwords field. I think something isnt working.... hmmm
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php