Navigacija

Vartotojų tinkle

Prisijungusių svečių: 623
Prisijungusių narių: 0
Prisijungusių narių nėra

Registruoti nariai: 25,956
Naujausias narys: saulyzas

Naujausi straipsniai

Paskutiniai nariai

saulyzas 2 dienos
MaFetas 4 dienos
TOMIJUS 1 savaitė
ozzWANTED 1 savaitė
Reikalas10 savaitės
Jaunelis16 savaitės
lanis17 savaitės
And2s17 savaitės
Memento Mori22 savaitės
Quwqkibor25 savaitės
asirija29 savaitės
tomeem31 savaitės
weberiz34 savaitės
mRokass36 savaitės
kartoonas37 savaitės
grunskiz40 savaitės
Bruksnys41 savaitės
illusion41 savaitės
ordo42 savaitės
Jurgaila42 savaitės

Informacija:


OS: Unknown
Naršyklė: Nežinoma
IP: 3.143.5.133
Naujienų: 529
Straipsnių: 235
Temų: 52,588
Postų: 522,537
Postų pask. parą: 0
Shout'ų pask. parą: 0
P.S.C. pask. parą: 0
Nuorodų kataloge: 13

Lankomumo Statistika

Peržiūrų šiandien: 22

Iš viso peržiūrų: 22948724

Prisijungti

REGISTRUOTIS
Nario vardas

Slaptažodis



Pamiršai slaptažodį?
Paprašyk naujo

Aktyvuoti save

Šaukykla

Jei norite rašyti žinutes, turite prisijungti.

MaFetas
2024 Lap. 13 22:11:57
hey how, geras dar veikiantis saitas?

Jaunelis
2024 Lie. 25 11:07:43
Oho vis dar veikia svetainė akinanti šypsen Šimtas metų, matau Šaukykloje nuostalgija. Smagu panaršyt po forumą ir pažiūrėt senas temas šypsosi

And2s
2024 Lie. 17 19:07:04
2008 pirmą kart čia patekau, man buvo 10m ir čia pramokau programavimo.. smagu skaityti senas žinutes, tokia nostalgija akinanti šypsen ačiū Ozz kad saugoji šitą kultūrinį reliktą šypsosi

ozzWANTED
2024 Sau. 17 01:01:00
Desperatiškus komentarus šaukykloje su accountu po mėnesio prasibuvimo, ištryniau. Pasaulis ir taip juodas. Įjungiam šviesą, prašviesės. šypsosi

Majakas
2023 Gru. 10 19:12:39
Negaliu patikėti jog žinutės/pranešimai visi yra nuo 2008 m akinanti šypsen

Šaukyklos archyvas

Apklausa

Ar esate patenkinti lietuviško vertimo kokybe?

Taip!

Taip, bet yra ką taisyti (parašysiu komentaruose)

Ne

Norėdamas balsuoti turite prisijungti.
Archyvas
Reklama 400x60
PHP: small tekstas
Forumas | PHP-Fusion, WordPress, Shopify, PHP ir MySQL (PROGRAMAVIMAS) | Kiti PHP, HTML, MySQL klausimai

Autorius: munte1 Peržiūrų: 2520      Spausdinti temą
2010 Sau. 6 17:01:15          1 žinutė iš 12
Spausdinti pranešimą
kaip padaryti ant user last senn paneles kad butu sumazintos raides?
2010 Sau. 6 17:01:10          2 žinutė iš 12
Spausdinti pranešimą
<small>tekstas</small>



2010 Sau. 6 17:01:34          3 žinutė iš 12
Spausdinti pranešimą
Corby parašė:
<small>tekstas</small>



o kur iterpti ta koda?nes kai bandziau man issikraipo visas puslapis.tai yra nebelikoa jokio tekto puslapyje
2010 Sau. 6 17:01:24          4 žinutė iš 12
Spausdinti pranešimą
Duok savo user last seen panelės kodą. Ir nepamiršk dėdamas čia paspausi code ir ten įrašyti.
2010 Sau. 6 17:01:07          5 žinutė iš 12
Spausdinti pranešimą
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }

if (file_exists(INFUSIONS."last_seen_users_panel/locale/".$settings['locale'].".php")) {
   include INFUSIONS."last_seen_users_panel/locale/".$settings['locale'].".php";
} else {
   include INFUSIONS."last_seen_users_panel/locale/English.php";
}

openside($locale['lsup000']);
$result = dbquery("SELECT * FROM ".DB_USERS." WHERE user_lastvisit>'0' AND user_status='0' ORDER BY user_lastvisit DESC LIMIT 0,5");
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n";
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 = $locale['lsup001'];
      } elseif ($lastseen < 360){
         $lastseen = $locale['lsup002'];
      } elseif ($iW > 0){
         if ($iW == 1) {
            $text = $locale['lsup003'];
         } else {
            $text = $locale['lsup004'];
         }
         $lastseen = $iW." ".$text;
      } elseif ($iD > 0){
         if ($iD == 1) {
            $text = $locale['lsup005'];
         } else {
            $text = $locale['lsup006'];
         }
         $lastseen = $iD." ".$text;
      } else {
         $lastseen = $iH.":".$iM.":".$iS;
      }
   echo "<tr>\n<td class='side' align='left'>".THEME_BULLET."\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' align='right'>".$lastseen."</td>\n</tr>\n";
}
}
echo "</table>";
closeside();
?>




2010 Sau. 6 17:01:03          6 žinutė iš 12
Spausdinti pranešimą
Kurią tu vietą nori,kad tau būtų sumažinta?
2010 Sau. 6 17:01:56          7 žinutė iš 12
Spausdinti pranešimą
ten kur rodo nicka ir salimais laika pries kiek laiko ar dienu buvo prisijunges
2010 Sau. 6 17:01:03          8 žinutė iš 12
Spausdinti pranešimą
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }

if (file_exists(INFUSIONS."last_seen_users_panel/locale/".$settings['locale'].".php")) {
   include INFUSIONS."last_seen_users_panel/locale/".$settings['locale'].".php";
} else {
   include INFUSIONS."last_seen_users_panel/locale/English.php";
}

openside($locale['lsup000']);
$result = dbquery("SELECT * FROM ".DB_USERS." WHERE user_lastvisit>'0' AND user_status='0' ORDER BY user_lastvisit DESC LIMIT 0,5");
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n";
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 = $locale['lsup001'];
      } elseif ($lastseen < 360){
         $lastseen = $locale['lsup002'];
      } elseif ($iW > 0){
         if ($iW == 1) {
            $text = $locale['lsup003'];
         } else {
            $text = $locale['lsup004'];
         }
         $lastseen = $iW." ".$text;
      } elseif ($iD > 0){
         if ($iD == 1) {
            $text = $locale['lsup005'];
         } else {
            $text = $locale['lsup006'];
         }
         $lastseen = $iD." ".$text;
      } else {
         $lastseen = $iH.":".$iM.":".$iS;
      }
   echo "<tr>\n<td class='side' align='left'>".THEME_BULLET."\n";
      echo "<small><a href='".BASEDIR."profile.php?lookup=".$data['user_id']."' title='".$data['user_name']."' class='side'></small>\n";
      echo trimlink($data['user_name'], 15)."</a></td><td class='side' align='right'><small>".$lastseen."</small></td>\n</tr>\n";
}
}
echo "</table>";
closeside();
?>





2010 Sau. 6 17:01:56          9 žinutė iš 12
Spausdinti pranešimą
dekuj.geriau nei buvo, bet nickai didesni negu kur laikas rasosi.ar cia taip turi buti ar eina padaryt vienodus dydzius?
2010 Sau. 6 17:01:45          10 žinutė iš 12
Spausdinti pranešimą
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }

if (file_exists(INFUSIONS."last_seen_users_panel/locale/".$settings['locale'].".php")) {
   include INFUSIONS."last_seen_users_panel/locale/".$settings['locale'].".php";
} else {
   include INFUSIONS."last_seen_users_panel/locale/English.php";
}

openside($locale['lsup000']);
$result = dbquery("SELECT * FROM ".DB_USERS." WHERE user_lastvisit>'0' AND user_status='0' ORDER BY user_lastvisit DESC LIMIT 0,5");
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n";
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 = $locale['lsup001'];
      } elseif ($lastseen < 360){
         $lastseen = $locale['lsup002'];
      } elseif ($iW > 0){
         if ($iW == 1) {
            $text = $locale['lsup003'];
         } else {
            $text = $locale['lsup004'];
         }
         $lastseen = $iW." ".$text;
      } elseif ($iD > 0){
         if ($iD == 1) {
            $text = $locale['lsup005'];
         } else {
            $text = $locale['lsup006'];
         }
         $lastseen = $iD." ".$text;
      } else {
         $lastseen = $iH.":".$iM.":".$iS;
      }
   echo "<tr>\n<td class='side' align='left'>".THEME_BULLET."\n";
      echo "<small><a href='".BASEDIR."profile.php?lookup=".$data['user_id']."' title='".$data['user_name']."' class='side'>\n";
      echo trimlink($data['user_name'], 15)."</a></small></td><td class='side' align='right'><small>".$lastseen."</small></td>\n</tr>\n";
}
}
echo "</table>";
closeside();
?>





2010 Sau. 6 17:01:03          11 žinutė iš 12
Spausdinti pranešimą
DIDELIS DEKUJ
Corby parašė:
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }

if (file_exists(INFUSIONS."last_seen_users_panel/locale/".$settings['locale'].".php")) {
   include INFUSIONS."last_seen_users_panel/locale/".$settings['locale'].".php";
} else {
   include INFUSIONS."last_seen_users_panel/locale/English.php";
}

openside($locale['lsup000']);
$result = dbquery("SELECT * FROM ".DB_USERS." WHERE user_lastvisit>'0' AND user_status='0' ORDER BY user_lastvisit DESC LIMIT 0,5");
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n";
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 = $locale['lsup001'];
      } elseif ($lastseen < 360){
         $lastseen = $locale['lsup002'];
      } elseif ($iW > 0){
         if ($iW == 1) {
            $text = $locale['lsup003'];
         } else {
            $text = $locale['lsup004'];
         }
         $lastseen = $iW." ".$text;
      } elseif ($iD > 0){
         if ($iD == 1) {
            $text = $locale['lsup005'];
         } else {
            $text = $locale['lsup006'];
         }
         $lastseen = $iD." ".$text;
      } else {
         $lastseen = $iH.":".$iM.":".$iS;
      }
   echo "<tr>\n<td class='side' align='left'>".THEME_BULLET."\n";
      echo "<small><a href='".BASEDIR."profile.php?lookup=".$data['user_id']."' title='".$data['user_name']."' class='side'>\n";
      echo trimlink($data['user_name'], 15)."</a></small></td><td class='side' align='right'><small>".$lastseen."</small></td>\n</tr>\n";
}
}
echo "</table>";
closeside();
?>




2010 Sau. 6 17:01:12          12 žinutė iš 12
Spausdinti pranešimą
Įvertink 10 ir parašyk komentarą akinanti šypsen
Peršokti į forumą: