// DETERMINE THE TABLE NAME
$update = "UPDATE table_abc SET client_notes=('$_POST[client_notes]') WHERE vendor_brand='brand123'";
if (!mysqli_query($con,$update))
{
die('Error: ' . mysqli_error($con,$update));
}
echo "Congrats! You've Added New Notes!";
mysqli_close($con);
?>`
When I run this script it comes out successfully with no SQL error message, but in MySQL the row isnt updated and become blank instead.
Any ideas on how to fix?