I am trying to update company table through query using PHP but no change in DB. MySQL DB.
$pncon->query("UPDATE `company` SET 
                              `name` = '" . $companyName . "',
                              `parent_ID` = '" . $companyParent . "',
                              `address` = '" . $address . "',
                              `phone` = '" . $phone . "',
                              `fax` = '" . $fax . "',
                              `email` = '" . $email . "',
                              `remarks` = '" . $remarks . "',
                              `type` = '" . $system . "',
                              `status` = '". $status ."'
                              WHERE `id` = '" . $id . "' ");
 
     
     
    