| Server IP : 104.21.21.239 / Your IP : 216.73.216.11 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/tgnewprod/mod/ |
Upload File : |
<?php require('_mod_security.php'); ?>
<?php
$slug = parse_uri('slug', 0, 'home', true);
$sql = "SELECT * FROM articles WHERE slug = :slug AND post_status = 1 ORDER BY post_date DESC";
$stmt = $db->prepare($sql);
$stmt->execute([
':slug' => $slug,
]);
if ($row = $stmt->fetch(PDO::FETCH_OBJ)) :
set_analytics_reference('article_register', $row->id);
echo '<div class="content_left">';
echo '<h1>' . $row->post_title . '</h1>';
if (!empty($row->featured_image)) :
echo '<img src="' . image_url_fix($row->featured_image, 'img/content/') . '" alt="' . $row->post_title . '">';
endif;
echo '<div class="post_content">' . $row->html . '</div>';
echo '</div>'; // content_left
$suppress_hubspot_header = true;
include_once('sidebar_home.php');
echo '<div class="cleardiv"> </div>';
else :
return(page_404());
endif;