[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."') ";
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

