Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/11/2013, 14:04
Avatar de nexus44
nexus44
 
Fecha de Ingreso: octubre-2012
Ubicación: Piura
Mensajes: 108
Antigüedad: 11 años, 6 meses
Puntos: 1
Exclamación Problemas al auto carga datos

Cordiales saludos estimados amigos de Foros del Web , en esta oportunidad vengo a pedir de su ayuda ; lo cual espero sea GRATA.

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
  1. <?php
  2.  
  3.  $servidor   ="localhost";
  4.  $usuario    ="root";
  5.  $contrasena ="";
  6.  $basedatos  ="pagos";
  7.  
  8.  $conexion   =mysql_connect($servidor,$usuario,$contrasena) or die ("ERROR : DE CONEXION");
  9.  
  10.              mysql_select_db($basedatos);
  11.    
  12.              mysql_query("SET NAMES utf8");
  13.  
  14.              mysql_query("SET CHARACTER_SET utf");
  15.    
  16. ?>
  17. <?php
  18.    
  19.    
  20.     if(isset($_POST['ruc']));
  21.    
  22.         {
  23.    
  24.     $ruc    = $_POST['ruc'];
  25.        
  26.     $queEmp = "select * from ventas where ruc='$ruc'";
  27.  
  28.     $resEmp = mysql_query($queEmp,$conexion);
  29.  
  30.     $row = mysql_fetch_array($resEmp);
  31.    
  32.     }
  33.    
  34. ?>
  35.  
  36.  <html lang="es">
  37.   <head>
  38.  
  39.    <script>
  40.     function enviar_formulario(){
  41.     document.ruc.submit();
  42.     }
  43.    </script>
  44.       <title>CARGAR DATOS</title>
  45.       </head>
  46.       <form action="" name="ruc"  method="post">
  47.       <body>
  48.      <input type="text" name="ruc" id="ruc" value="<?php echo $row['ruc'] ; ?>"  onKeyPress="if (event.keyCode == 13) enviar_formulario()" />
  49.      <input type="text" name="categoria" value="<?php echo $row['categoria'] ; ?>"  />
  50.       </body>    
  51.         </form>
  52.  </html>

De ante mano GRACIAS , SALUDOS !
__________________

"Nuestra capacidad se aleja de la Humanidad"