Re: Write from form to DB

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux