Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/11/2010, 07:49
Avatar de chicohot20
chicohot20
 
Fecha de Ingreso: mayo-2009
Mensajes: 388
Antigüedad: 15 años, 5 meses
Puntos: 43
Respuesta: inicando con ajax

Bueno no se si lo quieres asi, si no me lo hace saber.
En el ejemplo utilizo Jquery.

ejemplo.html
Código HTML:
Ver original
  1.     <head>
  2.         <title>Ejemplon</title>
  3.         <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  4.     </head>
  5.         <script type="text/javascript">
  6.         var variable=0;
  7.             $( function (){
  8.                 $("#variable").html(variable);
  9.                 $("#enviar").click( function (){
  10.                     variable++;
  11.                     $("#variable").html(variable);
  12.                     $.ajax({
  13.                       url: "pagina.php",
  14.                       contentType:"application/x-www-form-urlencoded; charset=utf-8",
  15.                       type:"POST",
  16.                       data: "variable="+variable,
  17.                       error: function(){
  18.                        alert('Error');
  19.                       },
  20.                       success: function(data){
  21.                           alert(data);
  22.                           //data es lo que te devuelve pagina.php
  23.                        }
  24.                     });
  25.                 });
  26.                
  27.             });
  28.         </script>
  29.     <body>
  30.         <span id="variable"></span>
  31.         <button id="enviar">Enviar</button>
  32.  
  33.     </body>
  34. </html>

pagina.php
Código PHP:
Ver original
  1. <?php
  2. $var=$_POST['variable'];
  3.  
  4. echo $var;
  5.  
  6. ?>