| Server IP : 208.122.213.31 / Your IP : 216.73.216.185 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/ |
Upload File : |
<?php // honey_pages.php
require "include/global.php";
require "include/types.php";
include "include/dbFuncs.php";
$link = dbConnect($databaseName);
$timestamp = mktime(0,0,0);
$z = TYPE ;
$keys = explode(';', $z);
$word = " AND (word LIKE '%".$keys[0]."%'";
for($x=1; $x < count($keys); $x++) {
$word .= " OR word LIKE '%".$keys[$x]."%'";
}
$word .= ")";
$exclude = EXCLUDE;
echo $z . "<br>";
echo $keys . "<br>";
echo $word . "<br>";
echo "<h1>Starting!</h1>\n";
// INDEX PAGE
$index = fopen("honeys/index.html", "w");
fputs ($index, "<html>\n<head><title>PORNSTAR HONEY BABES!</title></head>\n<body>\n<ul>\n");
ob_implicit_flush();
// $query = q("SELECT * FROM models WHERE unix_day <= '$timestamp' AND link NOT LIKE '$exclude%' AND word LIKE '%'".TYPE."%'", $link);
$query = q("SELECT * FROM models WHERE unix_day <= '$timestamp' ORDER BY name", $link);
while ($model = f($query)) {
$girlname = str_replace('_', ' ', $model->link);
$girlname = str_replace('-', ' ', $model->link);
$qry = q("SELECT * FROM sets WHERE dates<=$timestamp $word AND (girlname LIKE '".$girlname."%' OR girlname LIKE '%".$girlname."') ORDER BY name", $link);
// $qry = q("SELECT * FROM sets WHERE (word LIKE '%$hyphen%' OR word LIKE '%$underscore%' OR girlname LIKE '%$model->name%') and dates <= '$timestamp' ORDER BY name", $link);
if (nr($qry) != 0) {
$header = str_replace('%MODEL_NAME%', $model->name, implode('', file('header-honeys.php')));
if ($model->bust > 0) {
$body = str_replace('%MODEL_ID%', $model->girl_id, implode('', file('babe-info.php')));
} else {
$body = str_replace('%MODEL_ID%', $model->girl_id, implode('', file('babe-info-limited.php')));
}
echo "<div class='modelname'>Working on: $model->name - (".nr($qry).") Sets.</div>\n";
fputs ($index, "<li><a class='nav' href='$model->link.php'>$model->name</a></li>\n");
$fh = fopen("honeys/$model->link.php", "w");
fputs($fh, $header);
fputs($fh, $body);
fclose($fh);
} // IF SETS FOUND
} // while MODELS
fputs ($index, "</ul>\n</body>\n</html>\n");
fclose ($index);
echo "<h1>Finished!</h1>\n";
// EOF
?>