Hallo,
ich habe eine index.php. Dort will ich via
Link z.B. index.php?id=1 auf eine andere
Datei verlinken. (kein include()!!)
Mein Code sieht bisher so aus:
Ich bekomme aber folgende Fehlermeldung:
Warning: Cannot add header information - headers already sent by (output started at index.php:9) in index.php on line 18
Was ist da falsch??
ich habe eine index.php. Dort will ich via
Link z.B. index.php?id=1 auf eine andere
Datei verlinken. (kein include()!!)
Mein Code sieht bisher so aus:
Code:
<?php switch ($id) { case '1': { Header("Location: contentmanagment.php"); }; case '2': { Header("Location: webservice.php"); }; } ?>
Warning: Cannot add header information - headers already sent by (output started at index.php:9) in index.php on line 18
Was ist da falsch??
Kommentar