| 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/thelisaann.com/public_html/freephotos/ |
Upload File : |
<?php
$show_message = 'n';
$query = "SELECT m2a.model_id, m.model_name, a.tour_title ";
$query .= "FROM tour_mod2asset m2a ";
$query .= " left join tour_models m on m.model_id = m2a.model_id ";
$query .= " left join tour_asset a on m2a.asset_id = a.asset_id ";
$query .= " where m2a.asset_id = '".$asset_id."' ";
$result = mysql_query($query) or die("ERROR: <br>$query<br /> <strong>" . mysql_error()."</strong>");
$model_name_nospace = '';
while($row = mysql_fetch_assoc($result))
{
$model_name_nospace .= str_replace(' ', '_', $row["model_name"])."_";
$tour_title .= $row["tour_title"];
}
$hogal_dir = HOGAL_ROOT."/images/".$asset_id."/".$model_name_nospace."".$user_def_id."/";
$hogal_url = HOGAL_URL."/images/".$asset_id."/".$model_name_nospace."".$user_def_id."/";
$static_page = $hogal_url."".$model_name_nospace.".php";
?>