Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/01/2012, 10:23
Avatar de Prais
Prais
 
Fecha de Ingreso: octubre-2010
Mensajes: 114
Antigüedad: 14 años, 1 mes
Puntos: 6
Exclamación Funcion no envia variables php

Hola foreros, esta funcion no envia las variables, ya he intentado de muchas formas:

Código Javascript:
Ver original
  1. function Rev()
  2. {
  3.     $.ajax
  4.     ({
  5.         url:'pagina.php',
  6.         type:'POST',
  7.         async:true,
  8.         data:'Id='+<?php echo 1?>+&+'Usu='+<?php echo edu?>,
  9.         dataType:'html',
  10.         success:
  11.         function(msg)
  12.         {
  13.             WinWin(msg);
  14.         }
  15.     });
  16. }
Sin embargo logro enviar solo una variable:
Código Javascript:
Ver original
  1. function Rete()
  2.     {
  3.         $.ajax
  4.         ({
  5.             url:'pagina.php',
  6.             type:'POST',
  7.             async:true,
  8.             data:'ids=<?php echo $remo?>',
  9.             dataType:'html',
  10.             success:
  11.             function(msg)
  12.             {
  13.                 resul(msg);
  14.             }
  15.         });
  16.     }
Como dije cuando quiero enviar 2 variables ya no funca.
Alguna Idea ??????????