Themes
Themes are skins for , they allow you to change the look and feel of the browser and personalize it to your tastes. A theme can simply change the colors of or it can change every piece of the browser appearance.
Top Rated Themes
Ratings are based on feedback from people who use these themes.
-
= '$currentver' AND `Rating` > '0' AND `approved` = 'YES' GROUP BY `Name` ORDER BY `Rating` DESC, `Name` ASC, TV.Version DESC";
$sql_result = mysql_query($sql, $connection) or trigger_error("MySQL Error ".mysql_errno().": ".mysql_error()."", E_USER_NOTICE);
if (mysql_num_rows($sql_result)=="0") {
echo"
- No Top Rated Themes \n"; } while ($row = mysql_fetch_array($sql_result)) { $r++; $s++; $id = $row["ID"]; $name = $row["Name"]; $description = $row["Description"]; $rating = $row["Rating"]; echo"
- ";
echo"$name, $rating stars
"; echo"$description"; echo" \n";
if ($r >= "5") {
break;
}
}
unset($usednames, $usedversions, $r, $s, $i);
?>
Most Popular Themes
The most popular downloads over the last week.
-
= '$currentver' AND (`OSName` = '$OS' OR `OSName` = 'ALL') AND `downloadcount` > '0' AND `approved` = 'YES' ORDER BY `downloadcount` DESC ";
$sql_result = mysql_query($sql, $connection) or trigger_error("MySQL Error ".mysql_errno().": ".mysql_error()."", E_USER_NOTICE);
if (mysql_num_rows($sql_result)=="0") {
echo"
- No Popular Themes \n"; } while ($row = mysql_fetch_array($sql_result)) { $i++; $id = $row["ID"]; $vid = $row["vID"]; $name = $row["Name"]; $description = $row["Description"]; $downloadcount = $row["downloadcount"]; $totaldownloads = $row["TotalDownloads"]; $typename="themes"; if ($lastname == $name) { $i--; continue; } echo"
- ";
echo"$name, $downloadcount downloads
"; echo"$description"; echo" \n";
$lastname = $name;
if ($i >= "5") {
break;
}
}
?>
Newest Themes
New and updated themes. Subscribe to &type=T&list=newest">our RSS feed to be notified when new themes are added.
-
= '$currentver' AND (`OSName` = '$OS' OR `OSName` = 'ALL') AND `approved` = 'YES' ORDER BY `DateAdded` DESC ";
$sql_result = mysql_query($sql, $connection) or trigger_error("MySQL Error ".mysql_errno().": ".mysql_error()."", E_USER_NOTICE);
if (mysql_num_rows($sql_result)=="0") {
echo"
- Nothing Recently Added \n"; } while ($row = mysql_fetch_array($sql_result)) { $i++; $id = $row["ID"]; $type = $row["Type"]; $name = $row["Name"]; $description = $row["Description"]; $version = $row["Version"]; $dateadded = $row["DateAdded"]; $dateadded = gmdate("F d, Y", strtotime("$dateadded")); //$dateupdated = gmdate("F d, Y g:i:sa T", $timestamp); $typename = "themes"; if ($lastname == $name) { $i--; continue; } echo"
- ";
echo"$name $version, $dateadded
"; echo"$description"; echo" \n";
$lastname = $name;
if ($i >= "8") {
break;
}
}
?>