Exemplo n.º 1
0
 public function removePrograma($nome)
 {
     $this->_rem .= " nome= {$nome}";
     $_res = mysql_query($this->rem);
     this . testeInsert($_res);
 }
Exemplo n.º 2
0
 public function alterLoginNivel($usuario, $nivel)
 {
     $this->alt .= " nivel= {$nivel} WHERE usuario= {$usuario}";
     $_res = mysql_query($this->alt);
     this . testeInsert($_res);
 }
Exemplo n.º 3
0
 public function removeBairro($nome)
 {
     $this->_rem .= " nome = '{$nome}'";
     $_res = mysql_query($this->rem);
     this . testeInsert($_res);
 }
Exemplo n.º 4
0
 public function alteraCidade($nome, $estado)
 {
     $this->_rem .= " nome= {$nome} AND estado= {$estado}";
     $_res = mysql_query($this->rem);
     this . testeInsert($_res);
 }