View Single Post
  #101  
Old 7th January 2015, 14:41
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
Giorgatzelos was on the rite track
But you still need to change this part for the line break
PHP Code:
if(($count == 22)) //Wieviel in einer Reihe?
print'</tr><tr><td>';
else
print
'<td>'
like so
PHP Code:
if(($count == 22)) //Wieviel in einer Reihe?
{
$count 11;
print
'</tr><tr><td>';
}
else
{
print
'<td>';

Oh and you should also remove the unused querys
PHP Code:
$free mysql_query("SELECT * FROM torrents WHERE free = 'yes'") or sqlerr();
$doubleupload mysql_query("SELECT * FROM torrents WHERE doubleupload = 'yes'") or sqlerr();
$silver mysql_query("SELECT * FROM torrents WHERE silver = 'yes'") or sqlerr(); 
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
The Following 4 Users Say Thank You to joeroberts For This Useful Post:
eckeO5 (8th January 2015), Giorgatzelos (7th January 2015), hegylako (22nd March 2015), Marco (8th January 2015)