Ver Mensaje Individual
  #8 (permalink)  
Antiguo 18/11/2012, 21:27
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 4 meses
Puntos: 1567
Respuesta: Error en envio de formulario

@acumulador, el código que te pasé si funciona, lo que sucede con el tuyo es que no estás pasando correctamente los valores al php,
Si decis que usas un div, tambíen debe de funcionar. Pero te sugiero que uses un submit para evitar problemas si el usuario no tiene habilitado javascript

form.html
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>Post Ajax</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  7.  <script type="text/javascript">
  8. //<![CDATA[
  9. $(document).ready(function(){
  10.     $('#boton').click(function(){
  11.     var ced = $('#ced_encargado').val();
  12.         $.post("valida.php",{ced_encargado:ced},function(data){
  13.         $('#info_valida').fadeIn(1000).html(data);
  14.         });
  15.     });
  16. });
  17. //]]>
  18. </head>
  19.     <p>Nombre de usuario registrado: <b>eduardo</b></p>
  20. <form action="procesa.php" method="post">
  21. <input type="text" value="" id="ced_encargado" name="ced_encargado" />
  22. <!-- div id="botonq" style="padding: 5px; margin: 10px 0; background: orange; width: 170px; cursor: pointer;">Envío desde tag div</div -->
  23. <input type="submit" id="boton" onclick="return false;"/>
  24. </form>
  25. <div id="info_valida" style="margin-top:20px;"><!-- mensaje --></div>
  26. </body>
  27. </html>

valida.php

Código PHP:
Ver original
  1. <?php
  2. if($_POST['ced_encargado'] == "eduardo"){
  3. echo "existe";
  4. }else{
  5. echo "No existe";  
  6. }
  7. ?>

Demo
http://foros.emprear.com/ajax/post2/

Si querés el botón submit lo podés estilizar
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.