is there any way to modify a single cell in a database with some new info like this
$query = "INSERT INTO news(content) VALUES('$content') WHERE id = $id";
would that work if not what would do it?
thanks
$query = "UPDATE news SET content = '$content' WHERE id = $id";
how would i do that with multipul fields????
$query = "UPDATE news SET content = '$content', first_name = 'John', last_name = 'Smith', email = 'john@smith.com' WHERE id = $id";
thanks hehe
i put the same post on another site and i just got the same answer
hehe
i guess "John Smith" is a popular guy
no the actual method to do it
thanks for the help mate