コード例 #1
0
ファイル: ProgramaDAO.php プロジェクト: laiello/acao-moradia
 public function removePrograma($nome)
 {
     $this->_rem .= " nome= {$nome}";
     $_res = mysql_query($this->rem);
     this . testeInsert($_res);
 }
コード例 #2
0
ファイル: LoginDAO.php プロジェクト: laiello/acao-moradia
 public function alterLoginNivel($usuario, $nivel)
 {
     $this->alt .= " nivel= {$nivel} WHERE usuario= {$usuario}";
     $_res = mysql_query($this->alt);
     this . testeInsert($_res);
 }
コード例 #3
0
ファイル: BairroDAO.php プロジェクト: laiello/acao-moradia
 public function removeBairro($nome)
 {
     $this->_rem .= " nome = '{$nome}'";
     $_res = mysql_query($this->rem);
     this . testeInsert($_res);
 }
コード例 #4
0
ファイル: CidadeDAO.php プロジェクト: laiello/acao-moradia
 public function alteraCidade($nome, $estado)
 {
     $this->_rem .= " nome= {$nome} AND estado= {$estado}";
     $_res = mysql_query($this->rem);
     this . testeInsert($_res);
 }