dalampacki
Narys
Buldozeris
Pranešimai: 214
Įstojęs: 2010 Spa. 28 15:10:40
Sveiki, iškilo man tokia problemėle manr reiktų į šitą panelę
opentable( "Naujausia Muzika " ) ;
$top = dbquery( "SELECT * FROM " . $db_prefix . "downloads ORDER BY download_datestamp DESC LIMIT 0,20" ) ;
echo "<a name='top' id='top'></a>" ;
echo "<table cellspacing='0' cellpanding='0' width='100%' align='center'><tr><td class='cell'><strong>Nr.</strong></td><td class='cell'><strong>Pavadinimas</strong></td><td class='cell'><strong>Idėta</strong></td><td class='cell'><strong>Siuntesi</strong></td><td class='cell' width='5'> <strong> Pateikė</strong></td></tr>" ;
$a = 1 ;
while ( $data = dbarray( $top ) ) {
$result = dbquery( "SELECT user_id FROM " . $db_prefix . "users WHERE user_name='" . $data [ 'download_license' ] . "'" ) ;
$data2 = dbarray( $result ) ;
echo "<tr><td valign='top' class='cell'>$a .</td><td valign='top' class='cell'><a href='" . seoname( $data [ 'download_title' ] . "-ids" . $data [ 'download_id' ] ) . ".html' title='Parsisiusti' class='side'>" . $data [ 'download_title' ] . "</a></td><td class='cell'>" . showdate( "%Y.%m.%d " , $data [ 'download_datestamp' ] ) . "</td><td class='cell' align='center'>" . $data [ 'download_count' ] . "</td><td class='cell' align='center'><a href='" . seoname( $data [ 'download_license' ] ) . "-uid" . $data2 [ 'user_id' ] . ".html'>" . $data [ 'download_license' ] . "</a></td></tr>" ;
$a ++;
}
echo "</table>" ;
closetable( ) ;
Įdėti šitą kodą:
if ( $data [ 'super' ] == 1 ) {
echo "<font color='red'><b>Super!</b></font>" ;
}
Tą kodą reikia dėti ten kur atvaizduojama dainos pavadinimas bet ne prieš dainos pavadinimą o po.
Wasiulis
Narys
Terminatorius
Pranešimai: 1251
Įstojęs: 2010 Sau. 27 14:01:08
opentable("Naujausia Muzika ");
$top = dbquery("SELECT * FROM ".$db_prefix."downloads ORDER BY download_datestamp DESC LIMIT 0,20");
echo "<a name='top' id='top'></a>";
echo "<table cellspacing='0' cellpanding='0' width='100%' align='center'><tr><td class='cell'><strong>Nr.</strong></td><td class='cell'><strong>Pavadinimas</strong></td><td class='cell'><strong>Idėta</strong></td><td class='cell'><strong>Siuntesi</strong></td><td class='cell' width='5'> <strong> Pateikė</strong></td></tr>";
$a = 1;
while($data = dbarray($top)){
$result = dbquery("SELECT user_id FROM ".$db_prefix."users WHERE user_name='".$data['download_license']."'");
$data2 = dbarray($result);
if ($data['super'] == 1) {
echo"<font color='red'><b>Super!</b></font>";
} else {
echo "";
}
echo "<tr><td valign='top' class='cell'>$a.</td><td valign='top' class='cell'><a href='".seoname($data['download_title']."-ids".$data['download_id']).".html' title='Parsisiusti' class='side'>".$data['download_title']."</a>".$data['super']."</td><td class='cell'>".showdate("%Y.%m.%d", $data['download_datestamp'])."</td><td class='cell' align='center'>".$data['download_count']."</td><td class='cell' align='center'><a href='".seoname($data['download_license'])."-uid".$data2['user_id'].".html'>".$data['download_license']."</a></td></tr>";
$a++;
}
echo "</table>";
closetable();
FILMAITAU.in Redagavo
Wasiulis 2011 Sau. 5 14:01:19
dalampacki
Narys
Buldozeris
Pranešimai: 214
Įstojęs: 2010 Spa. 28 15:10:40
Vasiulis, neveikia ;/ o kai prieš dainą padarai tai viskas normaliai veikia.
Wasiulis
Narys
Terminatorius
Pranešimai: 1251
Įstojęs: 2010 Sau. 27 14:01:08
Pabandyk taip.
opentable("Naujausia Muzika ");
$top = dbquery("SELECT * FROM ".$db_prefix."downloads ORDER BY download_datestamp DESC LIMIT 0,20");
echo "<a name='top' id='top'></a>";
echo "<table cellspacing='0' cellpanding='0' width='100%' align='center'><tr><td class='cell'><strong>Nr.</strong></td><td class='cell'><strong>Pavadinimas</strong></td><td class='cell'><strong>Idėta</strong></td><td class='cell'><strong>Siuntesi</strong></td><td class='cell' width='5'> <strong> Pateikė</strong></td></tr>";
$a = 1;
while($data = dbarray($top)){
$result = dbquery("SELECT user_id FROM ".$db_prefix."users WHERE user_name='".$data['download_license']."'");
$data2 = dbarray($result);
if ($data['super'] == 1) {
$top = "<font color='red'><b>Super!</b></font>";
} else {
$top = "";
}
echo "<tr><td valign='top' class='cell'>$a.</td><td valign='top' class='cell'><a href='".seoname($data['download_title']."-ids".$data['download_id']).".html' title='Parsisiusti' class='side'>".$data['download_title']."</a>$top</td><td class='cell'>".showdate("%Y.%m.%d", $data['download_datestamp'])."</td><td class='cell' align='center'>".$data['download_count']."</td><td class='cell' align='center'><a href='".seoname($data['download_license'])."-uid".$data2['user_id'].".html'>".$data['download_license']."</a></td></tr>";
$a++;
}
echo "</table>";
closetable();
FILMAITAU.in
dalampacki
Narys
Buldozeris
Pranešimai: 214
Įstojęs: 2010 Spa. 28 15:10:40
Nu dabar rodo, bet tik vieną dainą; / o turi rodyt 20
Wasiulis
Narys
Terminatorius
Pranešimai: 1251
Įstojęs: 2010 Sau. 27 14:01:08
mano klaida, ištaisiau.
opentable("Naujausia Muzika ");
$top = dbquery("SELECT * FROM ".$db_prefix."downloads ORDER BY download_datestamp DESC LIMIT 0,20");
echo "<a name='top' id='top'></a>";
echo "<table cellspacing='0' cellpanding='0' width='100%' align='center'><tr><td class='cell'><strong>Nr.</strong></td><td class='cell'><strong>Pavadinimas</strong></td><td class='cell'><strong>Idėta</strong></td><td class='cell'><strong>Siuntesi</strong></td><td class='cell' width='5'> <strong> Pateikė</strong></td></tr>";
$a = 1;
while($data = dbarray($top)){
$result = dbquery("SELECT user_id FROM ".$db_prefix."users WHERE user_name='".$data['download_license']."'");
$data2 = dbarray($result);
if ($data['super'] == 1) {
$top2 = "<font color='red'><b>Super!</b></font>";
} else {
$top2 = "";
}
echo "<tr><td valign='top' class='cell'>$a.</td><td valign='top' class='cell'><a href='".seoname($data['download_title']."-ids".$data['download_id']).".html' title='Parsisiusti' class='side'>".$data['download_title']."</a>$top2</td><td class='cell'>".showdate("%Y.%m.%d", $data['download_datestamp'])."</td><td class='cell' align='center'>".$data['download_count']."</td><td class='cell' align='center'><a href='".seoname($data['download_license'])."-uid".$data2['user_id'].".html'>".$data['download_license']."</a></td></tr>";
$a++;
}
echo "</table>";
closetable();
FILMAITAU.in
dalampacki
Narys
Buldozeris
Pranešimai: 214
Įstojęs: 2010 Spa. 28 15:10:40
ooO dėkui veikia mldc ačiū, +11 tau.
Peršokti į forumą:
Nebeegzistuojančios svetainės
Žaliems
Bendri PHP-F klausimai
WordPress
Kiti PHP, HTML, MySQL klausimai
Expert PHP, MySQL klausimai
Kitos TVS
C#, Python, Java, JS, C++ klausimai
Naujų modų pristatymai
Mods, Panels & Infusions
Themes
Dalinuosi, dovanoju!
Jūsų saitai
Klausimai apie domenus ir hostingus
VPS/DS serverių konfigūravimas ir valdymas
Viskas apie skaitliukus, top'us ir lankomumą
Dizaino konkursai
Parduodu - perku dizainą, banerį
Parduodu - perku - keičiuosi reklama
Parduodu - perku domeną, tinklapį
Siūlau - ieškau hostingo/VPS serverio
Parduodu - perku skriptą, modifikaciją, tvs
Socialiniai tinklai - Facebook ir kiti
Legalus verslas, teisiniai klausimai
Visa kita kas susiję su darbu ir pinigais
LTStartups.com - Lietuvos startuolių bendruomenė
Off-Topic diskusijos
IT naujienos
Portalo informacija
Narių pasiūlymai
Geležis ir programinė įranga
Grafika
Out Of Place
Su e-verslu nesusijęs darbas ir prekyba
Dalinuosi, dovanoju!