PHP:
<?php
session_start ();
if (!isset ($_SESSION["uid"]))
{
header ("Location: index.php?menu=loginform3");
}
?>
Die zweite Zeile (session_start();) erzeugt bei mir folgenden Fehler
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by
Wie kann ich Ihn beheben?
mfg andlinga