Re: SQL Insert INTO question

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

 



geekgirl1 wrote:
First time poster.....

This is the problem.  I want to add the value of $_POST[review] to the
reviews table where the unique id from the reviews table equals the
review id on my form.  The statement below does not work.  Should I
use UPDATE instead?

"INSERT INTO reviews (review_txt)
	VALUES
	('$_POST[review]') WHERE review_id = $id";

Marian

"INSERT INTO reviews (review_txt)
 	VALUES
 	('$_POST[\'review\']') WHERE review_id = '$id'";

There, now it should work :)

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


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux