| Server IP : 104.21.21.239 / Your IP : 216.73.216.201 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/banners/domains/wisdomdigitalconsulting/public_html/ |
Upload File : |
<?php
require_once __DIR__ . '/config.php';
if (!isset($_GET['id']) || !is_numeric($_GET['id'])) exit;
$stmt = $pdo_wd->prepare("SELECT * FROM solutions WHERE id = ?");
$stmt->execute([(int)$_GET['id']]);
$getsol = $stmt->fetch();
if (!$getsol) exit;
?>
<!DOCTYPE html>
<!--[if IE 7]> <html class="ie7 no-js" lang="en"> <![endif]-->
<!--[if lte IE 8]> <html class="ie8 no-js" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html class="not-ie no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title><?= htmlspecialchars($getsol['headline']) ?> - Wisdom Digital Media</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Wisdom Digital web site solutions include <?= htmlspecialchars($getsol['categories']) ?>">
<meta name="keywords" content="<?= htmlspecialchars($getsol['tags']) ?>">
<link href="/css/bootstrap.css" rel="stylesheet">
<link href="/css/jquery.fancybox-1.3.4.css" rel="stylesheet">
<link href="/css/style.css" rel="stylesheet">
<link href="/css/font-awesome.css" rel="stylesheet">
<link href="/css/jquery.minitwitter.css" rel="stylesheet">
<!--[if IE 7]><link rel="stylesheet" href="css/font-awesome-ie7.css"><link rel="stylesheet" href="css/ie7.css"><![endif]-->
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link rel="shortcut icon" href="/ico/favicon.ico">
<script type="text/javascript" src="/js/modernizr.custom.81963.js"></script>
</head>
<body>
<?php include __DIR__ . '/header.php'; ?>
<div class="container">
<div class="row posts">
<div class="span8">
<article class="single-post row">
<div class="span8">
<img src="http://wisdomdigital.com/images/<?= htmlspecialchars($getsol['image']) ?>" alt="">
<div class="blog-entry">
<h1><?= htmlspecialchars($getsol['headline']) ?> </h1>
<div class="blog-data">
<span class="tags"><i class="icon-tags"></i> <strong>Tags:</strong> <?= htmlspecialchars($getsol['tags']) ?></span>
</div>
<p><?= $getsol['copy'] ?>
<p><b>Don't Delay! <a href="/contact-consulting.php">Click Here</a> to send us an email and to get started today with developing YOUR web or media solution.</b></p>
</div>
</div>
</article>
</div>
<aside class="span4">
<div class="widget">
<h3>About us</h3>
<img class="author" style="float:right;width:88px;height:100px;padding:0;border:0;" src="/images/bulb2.png" />
<p>Wisdom Digital Media brings to the table 17 years of high quality web site development experience, traffic building consultation and more. WD represents a global staff of in-house and contract developers, designers, content teams, marketing gurus and more, featuring talent throughout the United States and in more than 25 countries worldwide - at your service and hand selected for your project needs.</p>
</div>
<div class="widget">
<h3>Skills</h3>
<ul class="categories">
<li><a href="#"><i class="icon-ok"></i> Design</a></li>
<li><a href="#"><i class="icon-ok"></i> Inspiration</a></li>
<li><a href="#"><i class="icon-ok"></i> Web</a></li>
<li><a href="#"><i class="icon-ok"></i> JQuery</a></li>
<li><a href="#"><i class="icon-ok"></i> HTML5</a></li>
<li><a href="#"><i class="icon-ok"></i> CSS3</a></li>
<li><a href="#"><i class="icon-ok"></i> PHP</a></li>
<li><a href="#"><i class="icon-ok"></i> ColdFusion/CFML</a></li>
<li><a href="#"><i class="icon-ok"></i> HTML</a></li>
<li><a href="#"><i class="icon-ok"></i> JavaScript</a></li>
<li><a href="#"><i class="icon-ok"></i> eCommerce</a></li>
<li><a href="#"><i class="icon-ok"></i> and more...</a></li>
</ul>
</div>
</aside>
</div>
</div>
<?php include __DIR__ . '/footer.php'; ?>