Hola!
Gracias por contestar tan rápido... ya había probado eso, adjunto el código (por si acaso):
Código PHP:
Ver original<?php
include('conexion.php');
echo "probando sesion";
if($_SESSION[tipo] == "gestor"){
echo "mostraremos menu de gestor";
}
else if($_SESSION[tipo] == "usuario"){
echo "mostraremos menu usuario";
}
else{
echo "menu artista";
}
?>
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