Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Kaip sucentruot šia panelę?

Parašė snaige12· 2011 Vas. 3 23:02:58
#12


echo "<center><table align='center' width='100%'>
 
<tr>
 
<td width='33%'>";
 
openside("Naujausi siuntiniai");
 
$result = dbquery("SELECT * FROM ".$db_prefix."downloads ORDER BY download_datestamp DESC LIMIT 5");
 
if (dbrows($result) != 0) {
 
echo "<center><table align='center' width='100%' cellpadding='0' cellspacing='0'>";
 
while ($data = dbarray($result)) {
 
echo "<tr>
 
<td class='small'>
 
<img src='".THEME."images/bullet.gif'>
 
<a href='".BASEDIR."downloads.php?cat_id=".$data['download_cat']."&download_id=".$data['download_id']."' title='".$data['download_title']."' class='side'>".trimlink($data['download_title'], 40)."</a>
 
</td>
 
<td align='center'>".$data['download_count']."</td>
 
</tr>";
 
}
 
echo "</table></center>";
 
} else {
 
echo "<div style='text-align:center'>".$locale['004']."</div>\n";
 
}
 
echo "";
 
closeside();
 
echo "</td>
 
<td width='33%'>";
 
openside("Top 5 siuntiniai");
 
$result = dbquery("SELECT * FROM ".$db_prefix."downloads ORDER BY download_count DESC LIMIT 5");
 
if (dbrows($result) != 0) {
 
echo "<center><table align='center' width='100%' cellpadding='0' cellspacing='0'>";
 
while($data = dbarray($result)) {
 
$itemsubject = trimlink($data['download_title'], 40);
 
echo "<tr>\n<td class='small'><img src='".THEME."images/bullet.gif'> <a href='".BASEDIR."downloads.php?cat_id=".$data['download_cat']."&download_id=".$data['download_id']."' title='".$data['download_title']."' class='side'>$itemsubject</a></td>\n
 
<td align='center'>".$data['download_count']."</td>\n</tr>\n";
 
}
 
echo "</table></center>";
 
} else {
 
echo "<center>".$locale['004']."</center>\n";
 
}
 
closeside();
 
echo "</tr>
 
</table></center>";


mazdaug, gal veiks

Redagavo snaige12· 2011 Vas. 3 23:02:28