I have a table plazas
with the attributes NUMPLAZA
, OCUPACION
, IDusuario
I want to change the value of OCUPACION
to OCUPADO
using the following query from php:
elseif ($row['Cargo'] == "directivo2") {
$sql = "UPDATE 'plazas' SET 'OCUPACION'='OCUPADO' WHERE 'NUMPLAZA'='3'";;}
However, the row is not being updated.