Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/07/2011, 03:49
yo_mismita
 
Fecha de Ingreso: noviembre-2007
Mensajes: 26
Antigüedad: 17 años, 1 mes
Puntos: 0
Respuesta: variables de sesión

Hola!

Gracias por contestar tan rápido... ya había probado eso, adjunto el código (por si acaso):

Código PHP:
Ver original
  1. <?php
  2.  
  3.     include('conexion.php');
  4.     echo "probando sesion";
  5.  
  6.     session_start();
  7.  
  8.     if($_SESSION[tipo] == "gestor"){
  9.         echo "mostraremos menu de gestor";
  10.     }
  11.     else if($_SESSION[tipo] == "usuario"){
  12.         echo "mostraremos menu usuario";
  13.     }
  14.     else{
  15.         echo "menu artista";
  16.     }
  17.  
  18. ?>

pero me muestra lo siguiente:

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\wamp\www\probando_sesion.php:3) in C:\wamp\www\probando_sesion.php on line 9

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\wamp\www\probando_sesion.php:3) in C:\wamp\www\probando_sesion.php on line 9

menu artista