Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/02/2011, 11:00
Avatar de bUllan9ebrio
bUllan9ebrio
 
Fecha de Ingreso: enero-2011
Ubicación: Chile
Mensajes: 1.128
Antigüedad: 13 años, 3 meses
Puntos: 128
Respuesta: ¿ Como envio unas variables con codigo html y php ?

Prueba asi :

Código HTML:
Ver original
  1. <li><a href="SUPERUSUARIO/panelEmpresa/index.php?nivel=<?php echo $nivel;?>&usuario=<?php echo $usuario;?>" class="izda">EMPRESAS</a></li>

y los puedes recuperar asi:

Código PHP:
Ver original
  1. $nivel = $_REQUEST['nivel'];
  2. $usuario = $_REQUEST['usuario'];

Saludos.