psykochris
Mitglied
Hi@all,
Mein Problem.
Immer wenn ich auf einer Seite "session_start()" verwenden möchte, bekomme ich folgende Fehlermeldungen:
---
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at main.php:2) in main.php on line 6
---
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent by (output started at main.php:2) in main.php on line 6
---
Kann mir einer sagen woran das liegt, ich finde den Fehler einfach nicht?!
Hier noch ein Code-Beispiel:
DANKE
Mein Problem.
Immer wenn ich auf einer Seite "session_start()" verwenden möchte, bekomme ich folgende Fehlermeldungen:
---
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at main.php:2) in main.php on line 6
---
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent by (output started at main.php:2) in main.php on line 6
---
Kann mir einer sagen woran das liegt, ich finde den Fehler einfach nicht?!
Hier noch ein Code-Beispiel:
Code:
<?php
include "db_connect.php";
session_start();
echo "
<html>
<head>
<title>...</title>
<style type='text/css'>
body { background-color:lightblue; color:#000000; }
a:link { color:#0000FF; }
a:visited { color:0000FF; }
a:active { color:#FF0000; }
</style>
</head>
<body>
";
if ($_SESSION['user_id'] != "")
...
...
...
?>
DANKE