No torrents

You haven't uploaded any torrents yet, so there's nothing in this page.

get('mytorrents', $CURUSER['id']) ) ) ) { $query = "SELECT UNIX_TIMESTAMP(torrents.added) as utadded, FLOOR( ( UNIX_TIMESTAMP() - UNIX_TIMESTAMP(torrents.added) ) / 3600 ) as time_alive, torrents.id, torrents.category, torrents.leechers, torrents.seeders, torrents.name, torrents.visible, torrents.times_completed, torrents.size, torrents.added, torrents.comments, torrents.numfiles, torrents.filename, torrents.owner, IF(torrents.nfo <> '', 1, 0) as nfoav, IF(torrents.numratings < $minvotes, NULL, ROUND(torrents.ratingsum / torrents.numratings, 1)) AS rating, categories.name AS cat_name, categories.image AS cat_pic, users.username, categories.name AS cat_name, categories.image AS cat_pic, categories.stylesheet AS cat_stylesheet, users.username FROM torrents LEFT JOIN categories ON category = categories.id LEFT JOIN users ON torrents.owner = users.id $where $orderby $limit"; $res = do_mysql_query($query) or die(mysql_error()); while ($record = mysql_fetch_assoc($res) ) { $records[] = $record; } $cache_lite->save( serialize($records), 'mytorrents', $CURUSER['id']); } print($pagertop); torrenttable($records, "mytorrents.php?" . $addparam); print($pagerbottom); } stdfoot(); ?>