Estoy realizando un pequeño formulario donde por medio del ingreso del "RUC" o como lo quieran llamar seudónimo "ID" , Me carguen los datos dentro de una caja de texto.
Sin embargo presento un error en la linea numero 24 ; no se que estoy haciendo mal?
Código PHP:
Ver original
<?php $servidor ="localhost"; $usuario ="root"; $contrasena =""; $basedatos ="pagos"; ?> <?php { $ruc = $_POST['ruc']; $queEmp = "select * from ventas where ruc='$ruc'"; } ?> <html lang="es"> <head> <script> function enviar_formulario(){ document.ruc.submit(); } </script> <title>CARGAR DATOS</title> </head> <form action="" name="ruc" method="post"> <body> <input type="text" name="ruc" id="ruc" value="<?php echo $row['ruc'] ; ?>" onKeyPress="if (event.keyCode == 13) enviar_formulario()" /> <input type="text" name="categoria" value="<?php echo $row['categoria'] ; ?>" /> </body> </form> </html>
De ante mano GRACIAS , SALUDOS !