I plan to find the row using a WHERE statement, or matching a text to column.
Then, how would I proceed on editting a value from that row?
$query = "UPDATE table_name SET some_column = '$value' WHERE another_column = '$anotherValue'";
thank you!