In your UPDATE query, should you have a WHERE clause?

eg. UPDATE my_items SET name = '$update' WHERE ID = $ID


OR

do this

$update = $name;

instead of

$update = "$name";

Try running the query on the command line (on *nix) or through phpmyAdmin or something 
to see if the query is actually working.

Adam

Reply via email to