Updating a table in MySQL requires the use of the UPDATE MySQL function. The syntax is UPDATE table_name SET variable1 = variable1, variable2 = variable2 WHERE condition = condition
In PHP programming it would look like $sql = ” UPDATE table_name SET variable1 = variable1, variable2 = variable2 WHERE condition = condition “; Click here to access the web page that is mentioned in the following video.