Guest User

Untitled

a guest
Mar 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <form action="editarCliente_submit" method="get" accept-charset="utf-8">
  2.  
  3. </form>
  4.  
  5.  
  6. <br> <label>Nombre Del Cliente : </label>
  7. <select name="Clientes">
  8.  
  9. <?php while ($arreglo = mysqli_fetch_array($query)) { ?>
  10.  
  11. <option value="<?php echo $arreglo['nombre_Cliente']?>"><?php echo $arreglo ['NIT']?></option>
  12.  
  13. <?php } ?>
  14.  
  15. option
  16. </select></br>
  17.  
  18. <br> <label>NIT : </label>
  19. <input type="text" name="user" placeholder="Ingrese el NIT del cliente" required size="30" maxlength="30" style="margin-left: 5%" /><br/>
  20.  
  21. <br> <label style="margin-left: -10%"> ¿Se realizan RIPS? </label>
  22. <input type="text" name="user" placeholder="" required size="10" maxlength="15"/><br/>
  23.  
  24. <br><input type="submit" name="Modificar_Cliente" value ="Modificar" onclick="location='http://localhost/Aeroasistencia/Administracion/modificarCliente.php'" style="margin-right: 3%">
  25.  
  26. <input type="submit" name="Nuevo_Cliente" value ="Nuevo" onclick="location='http://localhost/Aeroasistencia/Administracion/nuevoCliente.php'">
  27.  
  28. <input type="submit" value="Volver" onclick="history.back(-1)" style="margin-left: 3%" />
  29.  
  30.  
  31. </table>
  32. </center>
Add Comment
Please, Sign In to add comment