re
press controll w at the same time a text editor will pop up :p
How to edit it?
Collapse
X
-
How? change what you need too !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 `online` WHERE `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');
?>
Leave a comment:
-
How to edit it?
Please!!!!!!Attached FilesTags: None
Leave a comment: