Hi there, I am trying to update many fields in a MySQL database.
This is my code :
$sql="update $tbl_name(general, maintenance,security, grounds_garden, swimming_pool, visitor_parking)
values($general, $maintenance, $security, $grounds_garden, $swimming_pool, $visitor_parking)where id=1";
The fields are not updating, can someone check that this query is correct.
Thanks