Consulta UPDATE a MySQL

//ejemplo sencillo function actualizar($prevista) { $cont = new DBConexion; if($cont->conectar()) { $queryt = "UPDATE tbPrevista SET numMedidor = '".$prevista->get_numMedidor()."', propietario='".$prevista->get_propietario()."', sector='".$prevista->get_sector()."'"; $result = @mysql_query($queryt); if (!$result) return false; else return $result; } }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.