Beiträge von d0t

    gefixt... auf allen seiten ist nun der anfang etwas anders...:

    PHP
    <?php session_start (); ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
            "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    ...

    Und auf der index hab ich den eintrag session_start weggenommen...
    die login.php spuckt aber wieder fehler aus:

    Code
    [B]Warning[/B]:  session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at ...\login.php:1) in [B]...\login.php[/B] on line [B]3[/B]
    
    
    [B]Warning[/B]:  session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at ...\login.php:1) in [B]...\login.php[/B] on line [B]3[/B]
    
    
    [B]Warning[/B]: Cannot modify header information - headers already sent by (output started at ...\login.php:1) in [B]...\login.php[/B] on line [B]32[/B]

    hmmmm?

    Mein anfämger-Latein ist am ende xD

    Liebe Grüße,
    und muchas gracias im Voraus! ;)

    d0t

    Moin,

    Ich habe da eine frage,
    hab mir via Anleitung ein Login-Script
    zusammengesnippelt,...

    http://www.tutorials.de/forum/php-tuto…t-sessions.html

    Meine Datenbank ist vom typ UTF-8 Binär

    Bein starten der index.php spuckt er folgende fehler aus:

    Code
    [B]Warning[/B]:  session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at A:\xampp\htdocs\iozeugs\iospace\index.php:3) in [B]A:\xampp\htdocs\iozeugs\iospace\index.php[/B] on line [B]3[/B]
    
    
    [B]Warning[/B]:  session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at A:\xampp\htdocs\iozeugs\iospace\index.php:3) in [B]A:\xampp\htdocs\iozeugs\iospace\index.php[/B] on line [B]3[/B]

    index.php

    login.php

    checkuser.php

    PHP
    <?php 
    session_start (); 
    if (!isset ($_SESSION['user_id'])) 
    { 
      header ("Location: index.php"); 
    } 
    ?>

    intern.php

    logout.php

    Was ist falsch?

    Liebe Grüße