| 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
require "setup.php";
$timestamp = mktime(0,0,0, date('m'), date('d'), date('Y'));
# Connect to your MySQL database server
$link = mysql_connect($hostName, $userName, $password);
mysql_select_db($databaseName, $link);
$fh = fopen($baseDir . 'model-list.php', 'w');
$select = "SELECT rowid, name, girlname, word FROM sets WHERE sets.dates <= $timestamp";
$type = split(';', TYPE);
$select .= " AND (word LIKE '%" . $type[0] . "%'";
for($t=1; $t < count($type); $t++) {
$select .= " OR word LIKE '%" . $type[$t] . "%'";
}
$select .= ')';
$setQry = @mysql_query($select);
$girlArray = array();
$errors = array();
while ($set = @mysql_fetch_object($setQry)) {
$keys = split(';', $set->word);
$myrow = str_pad($set->rowid, 4, '0', STR_PAD_LEFT);
$myset = $set->name;
$girlName = str_replace(' & ', ';', $set->girlname);
$girlName = str_replace(' * ', ';', $girlName);
if(strstr($girlName, ';')) {
$girlName = split(';', $girlName);
for($i=0; $i < count($girlName); $i++) {
$modelQry = @mysql_query("SELECT name FROM models WHERE models.name='".trim($girlName[$i])."' OR models.name='".str_replace('_', ' ', trim($girlName[$i]))."'");
if(mysql_num_rows($modelQry) != 0) {
$girlArray[] = str_replace('_', ' ', trim($girlName[$i]));
} else {
$foo = "$myrow\t$myset\t$girlName[$i]";
$errors[] = $foo;
}
}
} else {
$girlName = $set->girlname;
$modelQry = @mysql_query("SELECT name FROM models WHERE models.name='".trim($girlName)."' OR models.name='".str_replace('_', ' ', trim($girlName))."'");
if(mysql_num_rows($modelQry) != 0) {
$girlArray[] = str_replace('_', ' ', trim($girlName));
} else {
$foo = "$myrow\t$myset\t$girlName";
$errors[] = $foo;
}
}
}
$girlArray = array_unique($girlArray);
sort($girlArray);
for ($i=0; $i < count($girlArray); $i++) {
if($girlArray[$i] == '') continue;
fputs($fh, "<option value='honeys/" . str_replace(' ', '-', $girlArray[$i]) . ".php?\$tracking&start=\$start'>$girlArray[$i]</option>\n");
}
fclose($fh);
$errors = array_unique($errors);
sort($errors);
print_r($errors);
$foo = fopen('model-errors.txt', 'w');
for($x=0; $x < count($errors); $x++) {
fputs($foo, $errors[$x]."\n");
}
fclose($foo);
// EOF
?>