How to edit it?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • ozziemale31
    replied
    re

    press controll w at the same time a text editor will pop up :p

    Leave a comment:


  • metulj
    replied
    Originally posted by Moderators View Post
    Please!!!!!!
    How to edit it ?
    Simple... in any text editor !

    Leave a comment:


  • subzero
    replied
    PHP Code:
    <?php
    session_start
    ();

    require_once (
    'inc/config.php');
    require_once (
    'inc/func.php');
    require_once (
    'inc/head.php');  
    $login $_COOKIE['login'];
      if (!
    is_user())
    {
      echo 
    'Yo are not login';
    }
    else {
     
    $current time();
     
    $off $current 900;
    $query = @mysql_query("INSERT INTO `online` (`login`,`time`,`local`) VALUES('".$login."','".$current."','".$_SERVER['PHP_SELF']."')");
     
     
     
    $sql = @mysql_query("DELETE FROM `online` WHERE `time` < '".$off."');
    $show = @mysql_query("SELECT FROM `onlineWHERE `login` = '".$login."'");
     if (mysql_num_rows(
    $show) !=0)
    {
     
    while(
    $row = @mysql_fetch_array($show))
     
    {
    echo '<a href="
    /users/profile.php?user='.$row['login']">'.$row['login'].'</a> : '.$row['local'].'<br />
     }
    }
     
     }
     
    require_once ('
    inc/foot.php');
    ?>
    How? change what you need too !

    Leave a comment:


  • Moderators
    started a topic How to edit it?

    How to edit it?

    Please!!!!!!
    Attached Files
Working...
X