Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/07/2013, 09:01
Sirrohan
 
Fecha de Ingreso: julio-2010
Mensajes: 275
Antigüedad: 14 años, 4 meses
Puntos: 21
Respuesta: Obtener variable a través del método GET

En el jquery...
Código Javascript:
Ver original
  1. $.ajax({
  2. type: "GET",
  3. url: "functions/wall/update_new.php",
  4. data: datos,
  5. cache: false,
  6. success: function(html)
  7. {
  8. $("#update_post").prepend(html);
  9. $("#flash").slideUp(400);
  10. $("#update").focus();
  11. $("#update").val('');  
  12.   }
  13.  });
  14. }
  15. return false; //para no reiniciar la pagina!
  16.     });

En el php...
Código PHP:
Ver original
  1. <?
  2. $update= $_GET['update'];
  3. ?>

Esto fué lo que entendí ^^

incluso, si quieres la parte de ajax más simplificada...

Código Javascript:
Ver original
  1. $.get("functions/wall/update_new.php",{datos:datos},
  2. function(html)
  3. {
  4.  if(html == false)
  5.  {
  6.    alert("Ha ocurrido un error");
  7.   }
  8.   else
  9.   {
  10. $("#update_post").prepend(html);
  11. $("#flash").slideUp(400);
  12. $("#update").focus();
  13. $("#update").val('');
  14.   }
  15. });