Ciao ragazzi sto studiando le sessioni e ho fatto un file php con questo script
<?
session_start();
$_SESSION['nome'] = 'Giovanni';
$_SESSION['cognome'] = 'Bianchi';
?>
per vedere se mi funzionano le sessioni ma mi da questo errore
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at c:\programmi\apache group\apache\htdocs\sessioni_prova\index0.php:2)
perchè??
potete aiutarmi??