• Login
  • Register
  • Zoek
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Forum
  • Filebase Entry
  • More Options

ICTscripters

Dé plek voor IT

Dé plek voor IT

Login

Geavanceerde opties
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Dé plek voor IT - ICTscripters
  2. Forum
  3. Scripting & programmeren
  4. (X)HTML + XML + CSS

Forum

  • Beta-testers gezocht voor Crypto-oefenplatform

    Syntax 29 januari 2026 om 16:11
  • Na 15 jaar terug van weggeweest: iCriminals.nl is terug (BETA)!

    Syntax 19 januari 2026 om 09:34
  • Developer Gezocht

    Mikevdk 10 januari 2026 om 18:57
  • Op zoek naar de legends

    Syntax 5 januari 2026 om 13:50
  • [FREE] WeFact Hosting module

    Jeroen.G 13 oktober 2025 om 14:09
  • Help testers nodig voor android app Urgent

    urgentotservices 26 september 2025 om 10:21
  • Versio vervanger

    Jeroen.G 25 augustus 2025 om 15:56
  • Afspraken systeem met planbeperking

    Lijno 1 augustus 2025 om 23:04

Marktplaats

  • 321 Nieuwe Domeinnamen December 2025

    shiga 1 januari 2026 om 10:26
  • Meerdere mafia game template te koop

    Syntax 26 december 2025 om 00:07
  • Van een pixelige afbeelding naar een strakke, moderne website

    Syntax 21 december 2025 om 17:05

headers already sent Help

  • freaky-flow
  • 11 oktober 2010 om 20:27
  • Closed
  • freaky-flow
    Zielegerd
    Berichten
    87
    • 11 oktober 2010 om 20:27
    • #1

    Hallo CriminalPoint,

    Ik krijg steeds een fout op mijn Analysis page hij werkt wel maar ookal voeg je ob_start toe wordt het alleen maar erger.


    Website:
    http://www.onlinestereo.org/analysis/

    Fout:

    PHP
    Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/mazlum/domains/onlinestereo.org/public_html/analysis/index.php:6) in /home/mazlum/domains/onlinestereo.org/public_html/analysis/pass.php on line 1

    Script:

    PHP
    <?php session_start();?>
    <?php
    // Om sessions te kunnen gebruiken
    // Het array met de loginnamen met bijbehorende passwords
    $secrets = array("admin" => "mbolek123", "banga" => "parterre26");
    // De naam voor de sessie met de waarde voor de sessie
    $sessionname = "Secure";
    $sessiontekst = md5(date("d-m-Y"));
    // Checken of er iets is gepost vanuit een formulier
    if($_SERVER['REQUEST_METHOD'] == "POST")
    {
    // Checken of het inloggen of uitloggen is
    $keuze = (isset($_POST['uitloggen'])) ? "uitloggen" : "inloggen";
    if($keuze == "inloggen")
    {
    // Keuze is inloggen
    $naam = (isset($_POST['naam'])) ? trim($_POST['naam']) : "";
    $paswoord = (isset($_POST['paswoord'])) ? trim($_POST['paswoord']) : "";
    // Naam en paswoord checken of het in het array staat
    $bool = false;
    foreach($secrets as $key => $value)
    {
    // De $bool wordt true zodra de naam en het paswoord gevonden zijn
    $bool = ($bool OR ($key == $naam AND $value == $paswoord));
    }
    if($bool)
    {
    // Gebuiker is gevonden dus session aanmaken en naam onthouden
    $_SESSION[$sessionname] = $sessiontekst;
    $_SESSION['naam'] = $naam;
    }
    else
    {
    // Gebruiker is niet gevonden
    exit("Foute inloggegevens");
    }
    }
    else
    {
    // Keuze is uitloggen dus session weggooien
    session_destroy();
    exit("Je bent nu uitgelogd");
    }
    }
    // Checken of de session (niet) bestaat of (niet) de juiste waarde heeft
    if(!isset($_SESSION[$sessionname]) OR $_SESSION[$sessionname] != $sessiontekst)
    {
    // Session is niet in orde dus een formulier
    echo '<form action="" method="POST">
    Inlognaam: <input type="text" name="naam"><br/>
    Password: <input type="password" name="paswoord"><br/>
    <input name="inloggen" type="submit" value="Login">
    </form>';
    exit();
    }
    // Alles is in orde dus hieronder komt de pagina met, eventueel, onderstaande uitlogknop
    echo '<form action="" method="POST">
    <input name="uitloggen" type="submit" value="Logout">
    </form><br/>';
    // Eventueel te gebruiken naam
    echo 'Welkom ' . $_SESSION['naam'];
    ?>
    Toon Meer
  • Starlife
    Professional
    Berichten
    972
    • 11 oktober 2010 om 20:31
    • #2

    Probeer eens zonder

    PHP
    <?php session_start();?>

    :piraat:

    Met vriendelijke groten,
    Starlife:cheer:!

  • freaky-flow
    Zielegerd
    Berichten
    87
    • 11 oktober 2010 om 20:32
    • #3
    Citaat van Starlife

    Probeer eens zonder

    PHP
    <?php session_start();?>

    :piraat:

    Al gedaan dan moet je bij elke pagina inlogge dus het moet met.
    alleen met ob_start gaat de fouten niet weg.

  • Starlife
    Professional
    Berichten
    972
    • 11 oktober 2010 om 20:33
    • #4

    Post eens index.php.

    Met vriendelijke groten,
    Starlife:cheer:!

  • freaky-flow
    Zielegerd
    Berichten
    87
    • 11 oktober 2010 om 20:35
    • #5
    PHP
    <head><title>Online Stereo | Statistieken pagina</title></head>
    <link href="../css/style.css" rel="stylesheet" type="text/css">
    <table width="100%" border="0" cellspacing="0" cellpadding="2">
        <tr>
            <td align="center" class="text" height="25">
                 <a href="daily.php" class="text">Daily</a> | <a href="monthly.php" class="text">Monthly</a> | <a href="yearly.php" class="text">Yearly</a> | <a href="referers.php" class="text">Referers</a> | <a href="summary.php" class="text">Summary</a>
            </td>
        </tr>
    </table>
    <br>
    <?php
    include ("pass.php");
    include ("../configstat.php");
    
    
    $day = date ("d");
    $month = date ("m");
    $year = date ("Y"); 
    
    
    if ($day != '01') {
    
    
        $initial = $day - 1;
        
        if (strlen ($initial) == 1) {
            
            $previous = "0".$initial;
            $subdate = "0".$initial."/".$month."/".$year;
            
        } else {
            
            $previous = $initial;
            $subdate = $initial."/".$month."/".$year;
            
        }
        
        
        $history = mysql_query ("SELECT * FROM stats_daily WHERE SUBSTRING(subdate, 1, 2)='$previous'");
        $historyrows = mysql_num_rows ($history);
        $historyhits = mysql_fetch_array ($history);
        
        $history_large = mysql_query ("SELECT * FROM stats_history WHERE title='Largest Daily Hits'");
        $history_large_rows = mysql_num_rows ($history_large);
        $history_large_hits = mysql_fetch_array ($history_large);
        
        if ($history_large_rows == 0) {
        
            mysql_query ("INSERT INTO stats_history (title, hits, subdate) VALUES ('Largest Daily Hits', '0', '$subdate')");
            
            $history_large_rows = 1;
            
        }
        
        if (($historyrows == 1 && $history_large_rows == 1) && ($historyhits['hits'] > $history_large_hits['hits'])) {
        
            mysql_query ("UPDATE stats_history SET hits='$historyhits[hits]', subdate='$subdate' WHERE title='Largest Daily Hits'");
            
        }
        
        $history_small = mysql_query ("SELECT * FROM stats_history WHERE title='Smallest Daily Hits'");
        $history_small_rows = mysql_num_rows ($history_small);
        $history_small_hits = mysql_fetch_array ($history_small);
        
        if ($history_small_rows == 0) {
        
            mysql_query ("INSERT INTO stats_history (title, hits, subdate) VALUES ('Smallest Daily Hits', '10000000000', '$subdate')");
            
            $history_small_rows = 1;
            $history_small_hits['hits'] = 10000000000;
            
        }
        
        if (($historyrows == 1 && $history_small_rows == 1) && ($historyhits['hits'] < $history_small_hits['hits'])) {
        
            mysql_query ("UPDATE stats_history SET hits='$historyhits[hits]', subdate='$subdate' WHERE title='Smallest Daily Hits'");
            
        }
        
        $history_largeu = mysql_query ("SELECT * FROM stats_history WHERE title='Largest Daily Visits'");
        $history_largeu_rows = mysql_num_rows ($history_largeu);
        $history_largeu_hits = mysql_fetch_array ($history_largeu);
        
        if ($history_largeu_rows == 0) {
        
            mysql_query ("INSERT INTO stats_history (title, hits, subdate) VALUES ('Largest Daily Visits', '0', '$subdate')");
            
            $history_largeu_rows = 1;
        
        }
        
        if (($historyrows == 1 && $history_largeu_rows == 1) && ($historyhits['uniquehits'] > $history_largeu_hits['hits'])) {
        
            mysql_query ("UPDATE stats_history SET hits='$historyhits[uniquehits]', subdate='$subdate' WHERE title='Largest Daily Visits'");
            
        }
        
        $history_smallu = mysql_query ("SELECT * FROM stats_history WHERE title='Smallest Daily Visits'");
        $history_smallu_rows = mysql_num_rows ($history_smallu);
        $history_smallu_hits = mysql_fetch_array ($history_smallu);
        
        if ($history_smallu_rows == 0) {
        
            mysql_query ("INSERT INTO stats_history (title, hits, subdate) VALUES ('Smallest Daily Visits', '10000000000', '$subdate')");
            
            $history_smallu_rows = 1;
            $history_smallu_hits['hits'] = 10000000000;
            
        }
        
        if (($historyrows == 1 && $history_smallu_rows == 1) && ($historyhits['uniquehits'] < $history_smallu_hits['hits'])) {
        
            mysql_query ("UPDATE stats_history SET hits='$historyhits[uniquehits]', subdate='$subdate' WHERE title='Smallest Daily Visits'");
            
        }
        
    }
    
    
    $result = mysql_query ("SELECT * FROM stats_yearly");
    $numrows = mysql_num_rows ($result);
    
    
    $result2 = mysql_query ("SELECT * FROM stats_history");
    
    
    if ($numrows != 0) {
    
    
    ?>
    <table width="100%"  border="0" cellspacing="0" cellpadding="0">
        <tr>
            <td width="50%" colspan="2" align="right" valign="top">
                <table width="75%"  border="0" cellspacing="0" cellpadding="2">
                    <?php
                    
                    while ($myrow = mysql_fetch_array ($result2)) {
                    
                    ?>
                    <tr>
                        <td width="40%" height="25" class="text"><b><?= $myrow['title']; ?></b></td>
                        <td width="60%" height="25" class="text"><?= $myrow['hits']; ?> <i>(<?= $myrow['subdate']; ?>)</i></td>
                    </tr>
                    <?php } ?>
                </table>
            </td>
            <td width="50%" colspan="2" align="left" valign="top">
                <table width="75%"  border="0" cellspacing="0" cellpadding="2">
                <?php
                    
                $topreferer = mysql_query ("SELECT * FROM stats_referer ORDER BY (hits + 0) DESC LIMIT 1");
                $referrows = mysql_num_rows ($topreferer);
                $getreferer = mysql_fetch_array ($topreferer);
                
                $total = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_yearly"));
                $total2 = mysql_fetch_array (mysql_query ("SELECT SUM(uniquehits) AS visits FROM stats_yearly"));
                
                $day = date ("d");
                $current = mysql_fetch_array (mysql_query ("SELECT * FROM stats_daily WHERE SUBSTRING(subdate, 1, 2)='$day'"));
                    
                if ($referrows != 0) {
                ?>
                    <tr>
                        <td width="40%" height="25" colspan="2" class="text"><b>Top Referer</b></td>
                    </tr>
                     <tr>
                        <td width="40%" height="25" class="text"><?= $getreferer['referer']; ?></td>
                        <td width="40%" height="25" class="text"><?= $getreferer['hits']; ?></td>
                    </tr>
                     <tr>
                        <td width="40%" height="25" class="text" colspan="2">&nbsp;</td>
                    </tr>
                <?php } ?>
                    <tr bgcolor="#CCCCCC">
                        <td width="40%" height="25" class="text"><b>Total Hits</b></td>
                        <td width="60%" height="25" class="text"><?= $total['hits']; ?></td>
                    </tr>
                    <tr bgcolor="#CCCCCC">
                        <td width="40%" height="25" class="text"><b>Total Visits</b></td>
                        <td width="60%" height="25" class="text"><?= $total2['visits']; ?></td>
                    </tr>
                    <tr bgcolor="#FF6666">
                        <td width="40%" height="25" class="text"><b>Current Daily Hits</b></td>
                        <td width="60%" height="25" class="text"><?= $current['hits']; ?></td>
                    </tr>
                    <tr bgcolor="#FF6666">
                        <td width="40%" height="25" class="text"><b>Current Daily Visits</b></td>
                        <td width="60%" height="25" class="text"><?= $current['uniquehits']; ?></td>
                    </tr>
                </table>
            </td>
        </tr>
        <tr>
            <td height="25" colspan="2" align="center">&nbsp;</td>
            <td colspan="2" align="center">&nbsp;</td>
        </tr>
        <tr>
            <td align="right" valign="top">
                <table width="50%" border="0" cellpadding="3" cellspacing="0">
                <?php
    
    
                $ostotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_os")); // Obtain total OS hits
    
    
                $windowstotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_os WHERE os='Windows'"));
                $windows_hits = $windowstotal['hits'];
                $windows = round (($windows_hits / $ostotal['hits']) * 100); // Calculate OS' percentage of the total hits. ROUND to prevent decimals
    
    
                $mactotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_os WHERE os='Mac'"));
                $mac_hits = $mactotal['hits'];
                $mac = round (($mac_hits / $ostotal['hits']) * 100);
    
    
                $linuxtotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_os WHERE os='Linux'"));
                $linux_hits = $linuxtotal['hits'];
                $linux = round (($linux_hits / $ostotal['hits']) * 100);
    
    
                $os2total = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_os WHERE os='OS/2'"));
                $os2_hits = $os2total['hits'];
                $os2 = round (($os2_hits / $ostotal['hits']) * 100);
    
    
                $beostotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_os WHERE os='BeOS'"));
                $beos_hits = $beostotal['hits'];
                $beos = round (($beos_hits / $ostotal['hits']) * 100);
    
    
                $unixtotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_os WHERE os='Unix'"));
                $unix_hits = $unixtotal['hits'];
                $unix = round (($unix_hits / $ostotal['hits']) * 100);
    
    
                ?>
                    <tr align="center" bgcolor="#3399FF" class="text">
                        <td colspan="2" width="75%" height="25"><b>Operating System</b></td>
                        <td width="25%"><b>% Hits</b></td>
                    </tr>
                    <tr class="text">
                        <td width="25%" align="center" height="25"><img src="../images/windows.gif" width="35" height="35"></td>
                        <td width="50%">Windows</td>
                        <td width="25%" align="center"><?= $windows ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/mac.gif" width="35" height="35"></td>
                        <td>Mac</td>
                        <td align="center"><?= $mac ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/linux.gif" width="35" height="35"></td>
                        <td>Linux</td>
                        <td align="center"><?= $linux ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/os2.gif" width="35" height="35"></td>
                        <td>OS/2</td>
                        <td align="center"><?= $os2 ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/beos.gif" width="35" height="35"></td>
                        <td>BeOS</td>
                        <td align="center"><?= $beos ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/unix.gif" width="35" height="35"></td>
                        <td>Unix</td>
                        <td align="center"><?= $unix ?>%</td>
                    </tr>
                </table>
            </td>
            <td width="5">&nbsp;</td>
            <td width="5">&nbsp;</td>
            <td align="left" valign="top">
                <table width="50%"  border="0" cellpadding="3" cellspacing="0">
                <?php
    
    
                $browsertotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_browser")); // Total browser hits
    
    
                $ietotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_browser WHERE browser='Internet Explorer'"));
                $ie_hits = $ietotal['hits'];
                $ie = round (($ie_hits / $browsertotal['hits']) * 100); // Calculate browsers percentage of the total hits. ROUND to prevent decimals
    
    
                $konquerortotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_browser WHERE browser='Konqueror'"));
                $konqueror_hits = $konquerortotal['hits'];
                $konqueror = round (($konqueror_hits / $browsertotal['hits']) * 100);
    
    
                $icabtotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_browser WHERE browser='iCab'"));
                $icab_hits = $icabtotal['hits'];
                $icab = round (($icab_hits / $browsertotal['hits']) * 100);
    
    
                $firefoxtotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_browser WHERE browser='Firefox'"));
                $firefox_hits = $firefoxtotal['hits'];
                $firefox = round (($firefox_hits / $browsertotal['hits']) * 100);
    
    
                $mozillatotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_browser WHERE browser='Mozilla'"));
                $mozilla_hits = $mozillatotal['hits'];
                $mozilla = round (($mozilla_hits / $browsertotal['hits']) * 100);
    
    
                $lynxtotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_browser WHERE browser='Lynx'"));
                $lynx_hits = $lynxtotal['hits'];
                $lynx = round (($lynx_hits / $browsertotal['hits']) * 100);
    
    
                $netscapetotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_browser WHERE browser='Netscape'"));
                $netscape_hits = $netscapetotal['hits'];
                $netscape = round (($netscape_hits / $browsertotal['hits']) * 100);
    
    
                $safaritotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_browser WHERE browser='Safari'"));
                $safari_hits = $safaritotal['hits'];
                $safari = round (($safari_hits / $browsertotal['hits']) * 100);
    
    
                $aoltotal = mysql_fetch_array (mysql_query ("SELECT SUM(hits) AS hits FROM stats_browser WHERE browser='AOL'"));
                $aol_hits = $aoltotal['hits'];
                $aol = round (($aol_hits / $browsertotal['hits']) * 100);
    
    
                ?>
                    <tr align="center" bgcolor="#3399FF" class="text">
                        <td colspan="2" width="75%" height="25"><b>Browser</b></td>
                        <td width="25%"><b>% Hits</b></td>
                    </tr>
                    <tr class="text">
                        <td width="25%" align="center"><img src="../images/ie.gif" width="35" height="35"></td>
                        <td width="50%">Internet Explorer </td>
                        <td width="25%" align="center"><?= $ie ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/konqueror.gif" width="35" height="35"></td>
                        <td>Konqueror</td>
                        <td align="center"><?= $konqueror ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/icab.gif" width="35" height="35"></td>
                        <td>iCab</td>
                        <td align="center"><?= $icab ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/firefox.gif" width="35" height="35"></td>
                        <td>Firefox</td>
                        <td align="center"><?= $firefox ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/mozilla.gif" width="35" height="35"></td>
                        <td>Mozilla</td>
                        <td align="center"><?= $mozilla ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/lynx.gif" width="35" height="35"></td>
                        <td>Lynx</td>
                        <td align="center"><?= $lynx ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/netscape.gif" width="35" height="35"></td>
                        <td>Netscape</td>
                        <td align="center"><?= $netscape ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/safari.gif" width="35" height="35"></td>
                        <td>Safari</td>
                        <td align="center"><?= $safari ?>%</td>
                    </tr>
                    <tr class="text">
                        <td align="center"><img src="../images/aol.gif" width="35" height="35"></td>
                        <td>AOL</td>
                        <td align="center"><?= $aol ?>%</td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
    <?php } else { ?>
    <table width="100%"  border="0" cellspacing="0" cellpadding="2">
        <tr>
            <td class="text" align="center" height="25">ERROR: No Statistics</td>
        </tr>
    </table>
    <?php } ?>
    Toon Meer
  • Stefan.J
    Master
    Ontvangen Reacties
    9
    Berichten
    2.358
    • 11 oktober 2010 om 20:43
    • #6

    Waarschijnlijk staat er een onzichtbaar teken voor je PHP open tag. Deze wordt als output gezien en je hebt de poppen aan het dansen!

    Oplossing (hopelijk): Kopieer je hele script, zet het in een nieuw bestand, en upload die.

    Nieuwe reactie samengevoegd met originele reactie op 11.10.10 20:45:08:
    Ik vergat even je nieuwe post te lezen: Het komt door de HTML die je daar output boven de include statements. Dus: eerst je includes, en dan pas output.

  • Lancer
    Regelnasi
    Berichten
    1.043
    • 11 oktober 2010 om 21:00
    • #7

    Killingdevil, ik heb de header already sent opgelost.

    PHP gewoon boven de index gezet.
    Wat jij zei: HTML staat voor de session_start();.

    Nu kan hij niet inloggen, dus dat even veranderen.

  • freaky-flow
    Zielegerd
    Berichten
    87
    • 11 oktober 2010 om 21:08
    • #8

    Het is opgelost.
    Thanks lancer.

  • Lancer
    Regelnasi
    Berichten
    1.043
    • 11 oktober 2010 om 21:11
    • #9

    :k wolf:et buddy's 4 life xD je weet zelf banga, no problem!

  • freaky-flow
    Zielegerd
    Berichten
    87
    • 11 oktober 2010 om 21:12
    • #10
    Citaat van Lancer

    :k wolf:et buddy's 4 life xD je weet zelf banga, no problem!

    Ik kan wel een bAnga zijn "****"

    Maar ik ben wel de knapste hier:$

    Edit RiiCky: even een teksje weggezet

  • R.Jipping
    ex Administrator
    Ontvangen Reacties
    1
    Berichten
    1.660
    • 11 oktober 2010 om 21:32
    • #11

    Mooi dat het is opgelost indien je de volgende keer iemand met normale woorden kan bedanken inplaats van wat je nu zei mag je gerust weer is een vraag stellen:)

    :slotje:

    This is ten percent luck, twenty percent skill
    Fifteen percent concentrated power of will
    Five percent pleasure, fifty percent pain
    And a hundred percent reason to remember the name!

Participate now!

Heb je nog geen account? Registreer je nu en word deel van onze community!

Maak een account aan Login

ICT Nieuws

  • Fijne feestdagen

    tcbhome 28 december 2025 om 13:55
  • Kritieke update voor Really Simple Security-plug-in

    K.Rens 16 november 2024 om 16:12
  • ING Nederland streeft naar ondersteuning van Google Pay tegen eind februari

    K.Rens 2 november 2024 om 16:09

Blogs

  • Functioneel ontwerp

    Dees 28 december 2014 om 12:38
  • Access Control List implementatie in PHP/MySQL - deel 1/2

    FangorN 28 december 2018 om 12:35
  • Access Control List implementatie in PHP/MySQL - deel 2/2

    FangorN 29 december 2018 om 12:37

Gebruikers die dit topic bekijken

  • 1 Gasten
  1. Marktplaats
  2. Design
  3. Voorwaarden
  4. Ons team
  5. Leden
  6. Geschiedenis
  7. Regels
  8. Links
  9. Privacy Policy
ICTscripters ©2005 - 2026 , goedkope hosting door DiMoWeb.com, BE0558.915.582
Sponsors: Beste kattenhotel provincie Antwerpen | Beste Zetes eid kaartlezer webshop
Style: Nexus by cls-design
Stylename
Nexus
Manufacturer
cls-design
Licence
Commercial styles
Help
Supportforum
Visit cls-design