View Single Post
  #3  
Old 6th January 2013, 08:10
ndbj ndbj is offline
Senior Member
 
Join Date: Dec 2012
Portugal
Posts: 35
Default
Don't know if this will do, but try:


change this:

PHP Code:
$output    .=    "        <td align=\"left\"><b>"$detaila $tor['torrentname'] . $detailb ."$dl $thisisfrees $doubleuptag</b></a>\n"
to this:

PHP Code:
if (sql_timestamp_to_unix_timestamp($tor["added"]) >= $last_browse)
$output    .=    "        <td align=\"left\"><b>"$detaila $tor['torrentname'] . $detailb ."$dl $thisisfrees $doubleuptag &nbsp;(<font color=red>New</font>)</b></a>\n";
else
$output    .=    "        <td align=\"left\"><b>"$detaila $tor['torrentname'] . $detailb ."$dl $thisisfrees $doubleuptag</b></a>\n"

Last edited by Krypto; 6th January 2013 at 08:52.
Reply With Quote