| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/pornstarhoneys.com/public_html/modules/ |
Upload File : |
<?php // top_models.php
echo "<table align='center' cellspacing='0' cellpadding='3' border='0'>\n";
$qry = q("SELECT * FROM models WHERE unix_day <= '$timestamp' $exclude ORDER BY tour_rank DESC, tour_votes DESC", $link);
// GET TOP 2
echo "<tr>\n";
$count = 0;
while ($model = f($qry)) {
$girlname = str_replace('_', ' ', $model->link);
$girlname = str_replace('-', ' ', $model->link);
$set = f(q("SELECT COUNT(*) AS nmbr FROM sets WHERE dates <= '$timestamp' $type AND (girlname LIKE '".$girlname."%' OR girlname LIKE '%".$girlname."')", $link));
if ($set->nmbr == 0) continue;
$count++;
$page = "honeys/$model->link.php?$tracking&start=$start";
echo "<td class='babe-icon' align='center' valign='top' width='152'><a class='babe-link' href='$page'><img class='babe' src='/thumbs/babes/$model->image' border='0' alt='$model->name'><br>$model->name</a><br>\n";
include $scriptDir."vote-box.php";
if ($count == 2) break;
}
echo "<td colspan='3' class='main' align='center'>Sweet and natural. Created as Nature intended.<br>200,000+ images of soft and silky honeys, updated every day.<br>Naturally soft and here to please you and only you.<br>Fast, downloadable zip movies and a complete model index.<br>Honey School graduates take care of their men.<br>Long, silky hair. Beautiful bodies. Soft, touchable skin.<br>Every Honey has a graduate degree in Pleasure. Yours.<br><br><br></td></tr>\n";
// GET 3 thru 12
$count = 0;
$column = 0;
while ($model = f($qry)) {
$girlname = str_replace('_', ' ', $model->link);
$girlname = str_replace('-', ' ', $model->link);
$page = "honeys/$model->link.php?$tracking&start=$start";
$set = f(q("SELECT COUNT(*) AS nmbr FROM sets WHERE dates <= '$timestamp' $type AND (girlname LIKE '".$girlname."%' OR girlname LIKE '%".$girlname."')", $link));
if ($set->nmbr == 0) continue;
$count++;
$column++;
if ($column == 1) {
echo "<tr>\n";
}
echo "<td class='babe-icon' align='center' valign='top' width='152'><a class='babe-link' href='$page'><img class='babe' src='/thumbs/babes/$model->image' border='0' alt='$model->name'><br>$model->name</a><br>\n";
include $scriptDir."vote-box.php";
if ($column == 5) {
echo "</tr>\n";
$column = 0;
}
if ($count == 10) break;
}
if ($column != 0) {
echo "</tr>\n";
}
echo "</table>\n";
?>