mariuxxxx
Narys
Nuolatinis
Pranešimai: 177
Įstojęs: 2009 Bir. 25 20:06:52
|
Kaip padaryt kad vitoj online rodytu paveisleli online ant tokio vartotoju online?
|
Karolis
Administratorius
Ekspertas
Pranešimai: 3087
Įstojęs: 2008 Rugp. 12 01:08:42
|
Atsidaryk šito modo locale, tam locale susirask english.php tame english.php susirask kur užrašyta online, ta online nutrink ir parašyk <img src='nuoroda iki paveikslėlio' border="0">
Ginčas internete - kaip silpnapročių olimpiada, jei ir laimėsi - vistiek tu debilas.
Redagavo Karolis 2009 Rugp. 14 13:08:27 |
mariuxxxx
Narys
Nuolatinis
Pranešimai: 177
Įstojęs: 2009 Bir. 25 20:06:52
|
o jei local nera tokio ?
|
Karolis
Administratorius
Ekspertas
Pranešimai: 3087
Įstojęs: 2008 Rugp. 12 01:08:42
|
mariuxxxx parašė:
o jei local nera tokio ?
Priseg gal savo modą pažiūrėsiu. :}
Ginčas internete - kaip silpnapročių olimpiada, jei ir laimėsi - vistiek tu debilas.
Redagavo Karolis 2009 Rugp. 14 14:08:14 |
mariuxxxx
Narys
Nuolatinis
Pranešimai: 177
Įstojęs: 2009 Bir. 25 20:06:52
|
ziurek:
<?php
if (!defined("IN_FUSION")) { header("Location: ../../index.php"); exit; }
if ($settings['maintenance'] != "1") {
$cond = ($userdata['user_level'] != 0 ? "'".$userdata['user_id']."'" : "'0' AND online_ip='".USER_IP."'");
$result = dbquery("SELECT * FROM ".$db_prefix."online WHERE online_user=".$cond."");
if (dbrows($result) != 0) {
$result = dbquery("UPDATE ".$db_prefix."online SET online_lastactive='".time()."' WHERE online_user=".$cond."");
} else {
$name = ($userdata['user_level'] != 0 ? $userdata['user_id'] : "0");
$result = dbquery("INSERT INTO ".$db_prefix."online (online_user, online_ip, online_lastactive) VALUES ('$name', '".USER_IP."', '".time()."')");
}
$result = dbquery("DELETE FROM ".$db_prefix."online WHERE online_lastactive<".(time()-60)."");
openside($locale['010']);
$result = dbquery(
"SELECT ton.*, tu.user_id,user_name FROM ".$db_prefix."online ton
LEFT JOIN ".$db_prefix."users tu ON ton.online_user=tu.user_id"
);
$guests = 0; $members = array();
while ($data = dbarray($result)) {
if ($data['online_user'] == "0") {
$guests++;
} else {
array_push($members, array($data['user_id'], $data['user_name']));
}
}
echo "<img src='".THEME."images/bullet.gif' alt=''> ".$locale['011'].$guests."<br>\n";
if (count($members) > 0) {
$i = 1;
echo "<img src='".THEME."images/bullet.gif' alt=''> ".$locale['012'];
while (list($key, $member) = each($members)) {
echo "<a href='".BASEDIR."profile.php?lookup=".$member[0]."' class='side'>".$member[1]."</a>";
if ($i != count($members)) echo ", ";
$i++;
}
echo "<br>\n";
} else {
echo $locale['013']."<br>\n";
}
echo "<br><img src='".THEME."images/bullet.gif' alt=''> ".$locale['014'].number_format(dbcount("(user_id)", "users", "user_status<='1'"))."<br>\n";
if ($settings['admin_activation'] == "1") echo "<img src='".THEME."images/bullet.gif' alt=''> ".$locale['015'].dbcount("(user_id)", "users", "user_status='2'")."<br>\n";
$data = dbarray(dbquery("SELECT user_id,user_name FROM ".$db_prefix."users WHERE user_status='0' ORDER BY user_joined DESC LIMIT 0,1"));
echo "<img src='".THEME."images/bullet.gif' alt=''> ".$locale['016']."<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."' class='side'>".$data['user_name']."</a><br>\n";
echo "<br><img src='".THEME."images/bullet.gif' alt=''> Vartotojø istorija:<br><br>";
$result = dbquery("SELECT * FROM ".$db_prefix."users WHERE user_lastvisit>'0' AND user_status='0' ORDER BY user_lastvisit DESC LIMIT 0,6");
echo "<table cellpadding='0' cellspacing='0' width='100%'>";
if (dbrows($result) != 0) {
while ($data = dbarray($result)) {
$lastseen = time() - $data['user_lastvisit'];
$iW=sprintf("%2d",floor($lastseen/604800));
$iD=sprintf("%2d",floor($lastseen/(60*60*24)));
$iH=sprintf("%02d",floor((($lastseen%604800)%86400)/3600));
$iM=sprintf("%02d",floor(((($lastseen%604800)%86400)%3600)/60));
$iS=sprintf("%02d",floor((((($lastseen%604800)%86400)%3600)%60)));
if ($lastseen < 60){
$lastseen= Online;
} elseif ($lastseen < 360){
$lastseen="< 5min";
} elseif ($iW > 0){
if ($iW == 1) { $text = Savaitë; } else { $text = Savaitës; }
$lastseen = $iW." ".$text;
} elseif ($iD > 0){
if ($iD == 1) { $text = Diena; } else { $text = Dienos; }
$lastseen = $iD." ".$text;
} else {
$lastseen = $iH.":".$iM.":".$iS;
}
echo "<tr>\n<td class='side-small' align='left'><img src='".THEME."images/bullet.gif' alt=''>\n";
echo "<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."' title='".$data['user_name']."' class='side'>\n";
echo trimlink($data['user_name'], 15)."</a></td><td class='side-small' align='right'>".$lastseen."</td>\n</tr>\n";
}
}
echo "</table>";
closeside();
}
?>
|
Karolis
Administratorius
Ekspertas
Pranešimai: 3087
Įstojęs: 2008 Rugp. 12 01:08:42
|
<?php
if (!defined("IN_FUSION")) { header("Location: ../../index.php"); exit; }
if ($settings['maintenance'] != "1") {
$cond = ($userdata['user_level'] != 0 ? "'".$userdata['user_id']."'" : "'0' AND online_ip='".USER_IP."'");
$result = dbquery("SELECT * FROM ".$db_prefix."online WHERE online_user=".$cond."");
if (dbrows($result) != 0) {
$result = dbquery("UPDATE ".$db_prefix."online SET online_lastactive='".time()."' WHERE online_user=".$cond."");
} else {
$name = ($userdata['user_level'] != 0 ? $userdata['user_id'] : "0");
$result = dbquery("INSERT INTO ".$db_prefix."online (online_user, online_ip, online_lastactive) VALUES ('$name', '".USER_IP."', '".time()."')");
}
$result = dbquery("DELETE FROM ".$db_prefix."online WHERE online_lastactive<".(time()-60)."");
openside($locale['010']);
$result = dbquery(
"SELECT ton.*, tu.user_id,user_name FROM ".$db_prefix."online ton
LEFT JOIN ".$db_prefix."users tu ON ton.online_user=tu.user_id"
);
$guests = 0; $members = array();
while ($data = dbarray($result)) {
if ($data['online_user'] == "0") {
$guests++;
} else {
array_push($members, array($data['user_id'], $data['user_name']));
}
}
echo "<img src='".THEME."images/bullet.gif' alt=''> ".$locale['011'].$guests."<br>\n";
if (count($members) > 0) {
$i = 1;
echo "<img src='".THEME."images/bullet.gif' alt=''> ".$locale['012'];
while (list($key, $member) = each($members)) {
echo "<a href='".BASEDIR."profile.php?lookup=".$member[0]."' class='side'>".$member[1]."</a>";
if ($i != count($members)) echo ", ";
$i++;
}
echo "<br>\n";
} else {
echo $locale['013']."<br>\n";
}
echo "<br><img src='".THEME."images/bullet.gif' alt=''> ".$locale['014'].number_format(dbcount("(user_id)", "users", "user_status<='1'"))."<br>\n";
if ($settings['admin_activation'] == "1") echo "<img src='".THEME."images/bullet.gif' alt=''> ".$locale['015'].dbcount("(user_id)", "users", "user_status='2'")."<br>\n";
$data = dbarray(dbquery("SELECT user_id,user_name FROM ".$db_prefix."users WHERE user_status='0' ORDER BY user_joined DESC LIMIT 0,1"));
echo "<img src='".THEME."images/bullet.gif' alt=''> ".$locale['016']."<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."' class='side'>".$data['user_name']."</a><br>\n";
echo "<br><img src='".THEME."images/bullet.gif' alt=''> Vartotojø istorija:<br><br>";
$result = dbquery("SELECT * FROM ".$db_prefix."users WHERE user_lastvisit>'0' AND user_status='0' ORDER BY user_lastvisit DESC LIMIT 0,6");
echo "<table cellpadding='0' cellspacing='0' width='100%'>";
if (dbrows($result) != 0) {
while ($data = dbarray($result)) {
$lastseen = time() - $data['user_lastvisit'];
$iW=sprintf("%2d",floor($lastseen/604800));
$iD=sprintf("%2d",floor($lastseen/(60*60*24)));
$iH=sprintf("%02d",floor((($lastseen%604800)%86400)/3600));
$iM=sprintf("%02d",floor(((($lastseen%604800)%86400)%3600)/60));
$iS=sprintf("%02d",floor((((($lastseen%604800)%86400)%3600)%60)));
if ($lastseen < 60){
$lastseen= <img src='www.mp3world.lt/images/online.gif' border="0"> ;
} elseif ($lastseen < 360){
$lastseen="< 5min";
} elseif ($iW > 0){
if ($iW == 1) { $text = Savaitë; } else { $text = Savaitës; }
$lastseen = $iW." ".$text;
} elseif ($iD > 0){
if ($iD == 1) { $text = Diena; } else { $text = Dienos; }
$lastseen = $iD." ".$text;
} else {
$lastseen = $iH.":".$iM.":".$iS;
}
echo "<tr>\n<td class='side-small' align='left'><img src='".THEME."images/bullet.gif' alt=''>\n";
echo "<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."' title='".$data['user_name']."' class='side'>\n";
echo trimlink($data['user_name'], 15)."</a></td><td class='side-small' align='right'>".$lastseen."</td>\n</tr>\n";
}
}
echo "</table>";
closeside();
}
?>
Nežinau ar veikia negalėjau patikrinti modo neprisėgiai.
Ginčas internete - kaip silpnapročių olimpiada, jei ir laimėsi - vistiek tu debilas.
Redagavo Karolis 2009 Rugp. 14 14:08:41 |
sniuff
Narys
Antras po Dievo
Pranešimai: 4491
Įstojęs: 2007 Geg. 14 16:05:52
|
Error meta 100%.
http://androider.info/ |
mariuxxxx
Narys
Nuolatinis
Pranešimai: 177
Įstojęs: 2009 Bir. 25 20:06:52
|
va imk db ziurek http://www.failai.lt/op0qz5fw4f2...2).rar.htm
|
Karolis
Administratorius
Ekspertas
Pranešimai: 3087
Įstojęs: 2008 Rugp. 12 01:08:42
|
Nieks nesisiųs per ta tavo failai.lt prisėg moda.
Ginčas internete - kaip silpnapročių olimpiada, jei ir laimėsi - vistiek tu debilas. |
mariuxxxx
Narys
Nuolatinis
Pranešimai: 177
Įstojęs: 2009 Bir. 25 20:06:52
|
raso Atsiprašome, bet Jūsų žinutė per trumpa bet juk 25 simbolius dedu
|
mariuxxxx
Narys
Nuolatinis
Pranešimai: 177
Įstojęs: 2009 Bir. 25 20:06:52
|
va idedu bandyk db sory uz smilus kitaip rasyt neleidzia
Redagavo mariuxxxx 2009 Rugp. 14 14:08:26 |
Karolis
Administratorius
Ekspertas
Pranešimai: 3087
Įstojęs: 2008 Rugp. 12 01:08:42
|
Pats patikrinau veikia. :}
Ginčas internete - kaip silpnapročių olimpiada, jei ir laimėsi - vistiek tu debilas.
|
Peacemaker
Narys
Ekspertas
Pranešimai: 3085
Įstojęs: 2007 Lie. 31 17:07:59
|
Mariau, tam ir yra ši sistema - tam, kad nebūtų rašoma bet kas, todėl esu priverstas Jus įspėti. Prašau atidžiai perskaityti portalo taisykles.
Kiekvienam žmogui yra skirta dovana, tik ne kiekvienas sugeba ją atrasti.
Redagavo Peacemaker 2009 Rugp. 14 15:08:45 |
mariuxxxx
Narys
Nuolatinis
Pranešimai: 177
Įstojęs: 2009 Bir. 25 20:06:52
|
ŠeLMiz parašė:
Pats patikrinau veikia. :}
aciu o tam kitam....
|