php mysql , update query is not working
Posted
by Michael
on Stack Overflow
See other posts from Stack Overflow
or by Michael
Published on 2010-05-21T15:08:10Z
Indexed on
2010/05/21
15:10 UTC
Read the original article
Hit count: 159
I'm trying to update some info into database but for some reasons it doesn't update. Also I'm not getting error in the server logs.
mysql_query("UPDATE `view_item` SET `item_number` = $item_number, `title` = $title, `price` = $price, `shipping` = $shipping, `location` = $location, `start_time` = $start_time, `end_time` = $end_time, `seller_userName` = $seller_userName, `seller_UserNum` = $seller_UserNum, `number_of_bids` = $number_of_bids, `picture_link` = $picture_link WHERE `item_number` = $item_number");
© Stack Overflow or respective owner