MI problema es cuando busco los datos,solo me muetra el campo nombre,el campo tipo esta en un combobox y los datos son ingesados por html y comentario esta en textarea
si me podrian ayudar para solucionar lo agradeceria bastante
lo que quiero es ingresar el rut y me aparescan los datos relacionados a ese rut
gracias
aka dejo mi codigo
Código HTML:
Ver original
<html> <head> <body> <form id="form1" name="form1" method="post" action=""> <table width="329" border="1"> <tr> <input name="rut" type="text" id="rut" value="<?php if (isset( $_POST["rut"])) echo $_POST["rut"] ?>" onchange="submit();"/> </tr> <tr> <input name="nombre" type="text" id="nombre" value="<?php if (isset($negocio["NOMBRE"])) { echo $negocio["NOMBRE"] ;}?>" /> </tr> <tr> <select name="tipo" id="tipo"> </select> </tr> <tr> </tr> <tr> <input name="guardar" type="submit" id="guardar" value="guardar" /> <input name="eliminar" type="submit" id="eliminar" value="eliminar" /> </tr> </table> </form> </body> </html>