Ho un file PHP costituito in questo modo
<html>
<head>
</head>
<?PHP
session_start();
?>
<body
...
Mi da il seguente messaggio di errore
Warning: session_start(): Cannot send session cookie - headers already sent by ....
Warning: session_start(): Cannot send session cache limiter - headers already sent ....
Ma da quello che avevo capito usando le sessioni non venivano salvati i cookie sul client dell'utente. Cosa centra il primo warning che parla dei cookie?