Tags
Asked 2 years ago
17 Jun 2021
Views 241
Kurt

Kurt posted

Update query PHP MySQL

Update query PHP MySQL
web-api

web-api
answered Oct 9 '21 00:00


simple run the update query in mysqli_query() with connection resource.

$update_query="Update tablename set field1='value1' where id='value' "
mysqli_query($update_query,$conn)
Post Answer