Witam , mam skrypt wyswietlajacy top20 najczesciej pobieranych plikow z systemu PafileDB , chcial bym zmodyfikowac go aby wyswietlal 20 ostatnio dodanych plikow? tylko nie wiem wlasnie jak sie do tego zabrac....
Z góry dziekuje za pomoc!
<?php
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////Top Files in Main Page Addon for PafileDB (http://www.phparena.net)//////
//////////Written by Wh1t3w0lf (wh1t3w0lf@decayandcorrupt.com) (fixed by NightWolf www.belesh.net )/////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
//Instructions:
//Change the settings bellow (and the layout in the bottom of this file if you wish).
//After that put include this file in the page and in the place where you want to
show the top files
//via the include php command
//Settings
$dbhostname= "nazwahosta"; //Your MySQL Host name
$dbusername= "nazwa uzytkownika"; //Your MySQL Username
$dbpassword= "haslo"; //Your MySQL Password
$dbdatabase= "nazwabazy"; //Your MySQL Database Name
$url= "http://www.eadres/forum/dload.php"; //The Url where you have installed pafiledb.php e.g "http://www.yoursite.com/files/pafile.php"
$table ="phpbb_pa_files"; //Table name including the prefix
$topfilecount= 20; // Top X files to show. e.g Top 10
if (!$db) {
echo( "<p>Unable to connect to the " . "database server at this time.</p>" );
}
echo( "<p>Error locating the file " . "database at this time.</p >" );
}
$result = @mysql_query("SELECT file_id, file_name, file_dls FROM $table ORDER BY file_dls DESC", $db); if (!$result) {
}
//Style. Change accoridngly e.g Add html tags or css styles to match your site's design.
echo "<body bgcolor='#E0E8EF' text='#000000' link='#2F486F' vlink='#2F486F' alink='#2F486F'>"; body{
scrollbar-face-color: #DEE3E7;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #DEE3E7;
scrollbar-3dlight-color: #D1D7DC;
scrollbar-arrow-color: #006699;
scrollbar-track-color: #A9BAC9;
scrollbar-darkshadow-color: #98AAB1;
}
A.pFo:link {color:#2F486F; text-decoration:overline;}
A.pFo:visited {color:#2F486F; text-decoration:overline;}
A.pFo:active {color:#2F486F; text-decoration:overline;}
A.pFo:hover {color:#8AA0B4; text-decoration:overline;}
</style>";
echo "<center><u><b>Top 20 Downloads</b></u>:"; echo "<br><center><font face='Arial, Helvetica, sans-serif' size='-1'>"; $i=1;
$i=$i + 1;
echo "<a href='$url?action=file&file_id=$myrow[0]' target='_parent'>$myrow[1]</a><br>\n";}
///////////////////////////////////////////////////////////////////////////////
/////Top Files in Main Page Addon for PafileDB (http://www.phparena.net)///////
//////////Written by Wh1t3w0lf (wh1t3w0lf@decayandcorrupt.com)/////////////////
///////////////////////////////////////////////////////////////////////////////
?>
Ten post edytował emumax 13.05.2006, 11:36:49