File: /home/puthuppa/public_html/groups.php.bak
<?php include('controlpanel/includes/toolBox.php'); ?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Puthuppally Pally</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.png" type="image/x-icon">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="src/css/jquery.mmenu.all.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="main.css" rel="stylesheet">
<link href="responsive.css" rel="stylesheet">
<script src="js/jquery-1.11.1.min.js"></script>
</head>
<body>
<?php include("header.php"); ?>
<div class="contain">
<div class="lay">
<div class="shead">
<div>Groups</div>
</div>
</div>
</div>
<div class="contain bT pTB">
<div class="lay">
<?php
$groupes=firesql("SELECT * FROM cms_special ORDER BY created DESC",'res');
while($mres=mysqli_fetch_array($groupes))
{
extract($mres);
?>
<div class="articleDiv">
<h4 class="h4"><?php echo $title ?></h4>
<p class="p-w-i">
<span class="imgDv"><img src="controlpanel/uploads/special/<?php echo $image ?>" alt="about-puthuppally-pally"></span>
<?php echo $content ?>
</p><div class="clear"></div>
</div>
<?php
}
?>
</div>
</div><div class="clear"></div>
<?php include("footer.php"); ?>
</body>
</html>