Navigacija

Vartotojų tinkle

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

Registruoti nariai: 25,967
Naujausias narys: tanos

Naujausi straipsniai

Paskutiniai nariai

Reikalas 3 dienos
tanos 3 savaitės
LnKnPrK1 8 savaitės
inti10 savaitės
kileedyg16 savaitės
Kižas23 savaitės
Bruksnys24 savaitės
laleceylan5026 savaitės
minimukas26 savaitės
N-2029 savaitės
Rytis30 savaitės
DjArtas31 savaitės
WolfHammer31 savaitės
Nostesi41 savaitės
Wisedocs41 savaitės
asdasdddz45 savaitės
Paslapties K...46 savaitės
Audrius_1749 savaitės
Simbijanas61 savaitės
Karinacraft61 savaitės

Informacija:


OS: Unknown
Naršyklė: Nežinoma
IP: 216.73.217.130
Naujienų: 529
Straipsnių: 235
Temų: 52,592
Postų: 522,552
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.

LnKnPrK1
2026 Bir. 21 09:06:52
Sveiki, gal kas is administracijos gali parasyti man PM,aciu

minimukas
2026 Vas. 21 08:02:25
oi oi akinanti šypsen yra dar cia gyvu? akinanti šypsen

N-20
2026 Vas. 6 21:02:05
O mes dar gyvi šypsosi)

WolfHammer
2026 Sau. 25 01:01:35
drovus

Žmogus
2025 Geg. 31 10:05:18
Kas geresnio? šypsosi

Š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
Padekit prasau
Forumas | Modai, įskiepiai, panelės (PHP-FUSION) | Mods, Panels & Infusions

Autorius: pitbullss Peržiūrų: 1195      Spausdinti temą
2012 Gru. 19 16:12:50          1 žinutė iš 1
Spausdinti pranešimą
galit i situos modus idet player koda.
new150.php

<?php
require_once "maincore.php";
require_once THEMES."templates/header.php";
include LOCALE.LOCALESET."downloads.php";
$limit = "150"; //Limit of songs

if (!isset($_GET['cid']) || !isnum($_GET['cid'])) {
opentable($locale['MD505']);
echo '
<table border="0" cellpadding="1" align="center">

<tr>
<td class = "tbl1">'.$locale['MD500'].'</td>
<td class = "tbl1">-</td>
<td class = "tbl1">'.$locale['MD501'].'</td>
<td class = "tbl1">'.$locale['MD502'].'</td>
<td class = "tbl1">'.$locale['MD503'].'</td>
<td class = "tbl1">'.$locale['MD504'].'</td>
</tr>';

$result = dbquery(
"SELECT td.*,tdc.* FROM ".$db_prefix."downloads td
INNER JOIN ".$db_prefix."download_cats tdc ON td.download_cat=tdc.download_cat_id
WHERE ".groupaccess('download_cat_access')." ORDER BY download_datestamp DESC LIMIT 0,".$limit.""
);

if (dbrows($result) != 0) {
$x = 0;
while($music = dbarray($result)) {
$x++;
$dcat = dbarray(dbquery("SELECT * FROM ".$db_prefix."download_cats WHERE download_cat_id='".$music['download_cat_id']."'"));
$duser = dbarray(dbquery("SELECT * FROM ".$db_prefix."users WHERE user_id='".$music['download_user']."'"));
echo '<tr>
<td class = "tbl2">'.$x.'</td>
<td class = "tbl2">
<a href="'.$settings['siteurl'].'groti.php?play_id='.$music['download_id'].'" onclick=\'OpenPopup(this.href); return false\'><img alt="'.$music["download_title"].'" src="'.IMAGES.'downloads/dl_cats/play.png" width="16" height="16" /></td>
<td class = "tbl2"><a href="'.BASEDIR.'downloads.php?d_id='.$music['download_id'].'" >'.$music["download_title"].'</a></td>
<td class = "tbl2"><a href="'.BASEDIR.'downloads.php?cat_id='.$music['download_cat'].'" >'.$dcat["download_cat_name"].'</a></td>
<td class = "tbl2">'.$music["download_count"].'</td>
<td class = "tbl2">'.profile_link($duser['user_id'], $duser["user_name"], $duser['user_status']).'</td>
</tr>';
}
} else {
echo '<tr>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">Nëra muzikos ákeltos</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
</tr>

';
}
echo '</table>';
closetable();

} elseif (isset($_GET['cid']) && isnum($_GET['cid'])) {

opentable($locale['MD505']);
echo '
<table border="0" cellpadding="1" align="center">

<tr>
<td class = "tbl1">'.$locale['MD500'].'</td>
<td class = "tbl1">-</td>
<td class = "tbl1">'.$locale['MD501'].'</td>
<td class = "tbl1">'.$locale['MD502'].'</td>
<td class = "tbl1">'.$locale['MD503'].'</td>
<td class = "tbl1">'.$locale['MD504'].'</td>
</tr>';

$limit = "150";
$cresult = dbquery("SELECT * FROM ".$db_prefix."downloads WHERE download_cat = ".$_GET['cid']." order by download_count DESC LIMIT 0,".$limit."");

if (dbrows($cresult) != 0) {
$x = 0;
while($music = dbarray($cresult)) {
$x++;
$dcat = dbarray(dbquery("SELECT * FROM ".$db_prefix."download_cats WHERE download_cat_id='".$music['download_cat']."'"));
$duser = dbarray(dbquery("SELECT * FROM ".$db_prefix."users WHERE user_id='".$music['download_user']."'"));
echo '<tr>
<td class = "tbl2">'.$x.'</td>
<td class = "tbl2">
<a href="'.$settings['siteurl'].'groti.php?play_id='.$music['download_id'].'" onclick=\'OpenPopup(this.href); return false\'><img alt="'.$music["download_title"].'" src="'.IMAGES.'downloads/dl_cats/play.png" width="16" height="16" /></td>
<td class = "tbl2"><a href="'.BASEDIR.'downloads.php?d_id='.$music['download_id'].'" >'.$music["download_title"].'</a></td>
<td class = "tbl2"><a href="'.BASEDIR.'downloads.php?cat_id='.$music['download_cat'].'" >'.$dcat["download_cat_name"].'</a></td>
<td class = "tbl2">'.$music["download_count"].'</td>
<td class = "tbl2">'.profile_link($duser['user_id'], $duser["user_name"], $duser['user_status']).'</td>
</tr>';
}
} else {
echo '<tr>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">Nëra muzikos ákeltos</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
</tr>

';
}
echo '</table>';
closetable();
}

require_once THEMES."templates/footer.php";
?>



cia kitas kodas top150.php


<?php
require_once "maincore.php";
require_once THEMES."templates/header.php";
include LOCALE.LOCALESET."downloads.php";
$limit = "150"; //Limit of songs

if (!isset($_GET['cid']) || !isnum($_GET['cid'])) {
opentable($locale['MD506']);
echo '
<table border="0" cellpadding="1" align="center">

<tr>
<td class = "tbl1">'.$locale['MD500'].'</td>
<td class = "tbl1">-</td>
<td class = "tbl1">'.$locale['MD501'].'</td>
<td class = "tbl1">'.$locale['MD502'].'</td>
<td class = "tbl1">'.$locale['MD503'].'</td>
<td class = "tbl1">'.$locale['MD504'].'</td>
</tr>';

$result = dbquery(
"SELECT td.*,tdc.* FROM ".$db_prefix."downloads td
INNER JOIN ".$db_prefix."download_cats tdc ON td.download_cat=tdc.download_cat_id
WHERE ".groupaccess('download_cat_access')." ORDER BY download_count DESC LIMIT 0,".$limit.""
);

if (dbrows($result) != 0) {
$x = 0;
while($music = dbarray($result)) {
$x++;
$dcat = dbarray(dbquery("SELECT * FROM ".$db_prefix."download_cats WHERE download_cat_id='".$music['download_cat_id']."'"));
$duser = dbarray(dbquery("SELECT * FROM ".$db_prefix."users WHERE user_id='".$music['download_user']."'"));
echo '<tr>
<td class = "tbl2">'.$x.'</td>
<td class = "tbl2">
<a href="'.$settings['siteurl'].'groti.php?play_id='.$music['download_id'].'" onclick=\'OpenPopup(this.href); return false\'><img alt="'.$music["download_title"].'" src="'.IMAGES.'downloads/dl_cats/play.png" width="16" height="16" /></td>
<td class = "tbl2"><a href="'.BASEDIR.'downloads.php?d_id='.$music['download_id'].'" >'.$music["download_title"].'</a></td>
<td class = "tbl2"><a href="'.BASEDIR.'downloads.php?cat_id='.$music['download_cat'].'" >'.$dcat["download_cat_name"].'</a></td>
<td class = "tbl2">'.$music["download_count"].'</td>
<td class = "tbl2">'.profile_link($duser['user_id'], $duser["user_name"], $duser['user_status']).'</td>
</tr>';
}
} else {
echo '<tr>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">Nëra muzikos ákeltos</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
</tr>

';
}
echo '</table>';
closetable();

} elseif (isset($_GET['cid']) && isnum($_GET['cid'])) {
$dcat = dbarray(dbquery("SELECT * FROM ".$db_prefix."download_cats WHERE download_cat_id='".$_GET['cid']."'"));
opentable($dcat['download_cat_name']." - ".$locale['MD505']);
echo '
<table border="0" cellpadding="1" align="center">

<tr>
<td class = "tbl1">'.$locale['MD500'].'</td>
<td class = "tbl1">-</td>
<td class = "tbl1">'.$locale['MD501'].'</td>
<td class = "tbl1">'.$locale['MD502'].'</td>
<td class = "tbl1">'.$locale['MD503'].'</td>
<td class = "tbl1">'.$locale['MD504'].'</td>
</tr>';

$limit = "150";
$cresult = dbquery("SELECT * FROM ".$db_prefix."downloads WHERE download_cat = ".$_GET['cid']." order by download_count DESC LIMIT 0,".$limit."");

if (dbrows($cresult) != 0) {
$x = 0;
while($music = dbarray($cresult)) {
$x++;

$duser = dbarray(dbquery("SELECT * FROM ".$db_prefix."users WHERE user_id='".$music['download_user']."'"));
echo '<tr>
<td class = "tbl2">'.$x.'</td>
<td class = "tbl2">
<a href="'.$settings['siteurl'].'groti.php?play_id='.$music['download_id'].'" onclick=\'OpenPopup(this.href); return false\'><img alt="'.$music["download_title"].'" src="'.IMAGES.'downloads/dl_cats/play.png" width="16" height="16" /></td>
<td class = "tbl2"><a href="'.BASEDIR.'downloads.php?d_id='.$music['download_id'].'" >'.$music["download_title"].'</a></td>
<td class = "tbl2"><a href="'.BASEDIR.'downloads.php?cat_id='.$music['download_cat'].'" >'.$dcat["download_cat_name"].'</a></td>
<td class = "tbl2">'.$music["download_count"].'</td>
<td class = "tbl2">'.profile_link($duser['user_id'], $duser["user_name"], $duser['user_status']).'</td>
</tr>';
}
} else {
echo '<tr>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">Nëra muzikos ákeltos</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
<td class = "tbl2">&nbsp;</td>
</tr>

';
}
echo '</table>';
closetable();
}

require_once THEMES."templates/footer.php";
?>

0 atsakymų
Peršokti į forumą: