<?php
/***************************************************************************
* Product Name : Pointter PHP Content Management System
* Version : V 1.2
* Release Date : 01/02/11
* Copyright : (C) 2011 PangramSoft / Murat Cevik
* Program URL : http://www.pointter.com
* Company URL : http://www.pangramsoft.com
* Email Address : hide@address.com
***************************************************************************/
/****************************************************************************
Pointter PHP Content Management System is licensed under Creative Commons Attribution Non-commercial No Derivatives 3.0 Unported (by-nc-nd) License.
To view a copy of this license, (a) visit http://creativecommons.org/licenses/by-nc-nd/3.0/ or (b) send a letter to Creative Commons, 171 2nd Street,
Suite 300, San Francisco, California, 94105, USA.
You must not remove/modify/alter the copyright informations both visible and invisible forms in the source code and you must not remove/modify/alter
the copyright informations in the footer part of the script including the Pointter image (png format file), hard link and title tag.
Please contact the copyright holder PangramSoft / Murat Cevik for a commercial license to remove the copyright information in the footer part of the script.
*****************************************************************************/
require 'includes/settings_ini.php';
include 'includes/seo.php';
include 'includes/counter.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--This website has been created by Pointter PHP Content Management System and copyrighted by PangramSoft / Murat Cevik.
Please visit http://www.pointter.com for a FREE DOWNLOAD.-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="javascript/clock.js"></script>
<script type="text/javascript" src="javascript/toggle.js"></script>
<link type="text/css" rel="stylesheet" href="clock.css"/>
<link type="text/css" rel="stylesheet" href="body.css"/>
<link type="text/css" rel="stylesheet" href="style.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9"/>
<meta name="description" content="<?php echo $desc; ?>"/>
<meta name="keywords" content="<?php echo $meta; ?>"/>
<title><?php echo $title; ?></title>
</head>
<body onload="clock(),slide()">
<!--This Is The Main Table-->
<table class="main" width="1030" align="center" cellspacing="0" cellpadding="0">
<!--This Is The Header Part-->
<tr><td colspan="3" width="1030" align="center">
<?php
include 'header.php';
include 'includes/search.php';
?>
</td></tr><tr>
<!--This Is The Left Column-->
<td width="215" valign="top" align="left">
<?php
include 'includes/column_left.php';
?>
</td>
<!--This Is The Middle Column-->
<td width="600" valign="top" align="center">
<?php
//Take Category Name
$file_raw=basename($_SERVER['REQUEST_URI']);
$info=pathinfo($file_raw);
$file=basename($file_raw,'.'.$info[extension]);
$file=$file.'.php';
include 'configset/conn.php';
$find_cat=mysql_query("SELECT * FROM Category WHERE Url='$file'");
$data=mysql_fetch_array($find_cat);
//Take All Products From Its Category
if ($data[Subcode]!=0)
$m_total=mysql_query("SELECT * FROM Products WHERE Category='$data[Name]'");
else
$m_total=mysql_query("SELECT * FROM Products WHERE Category='$data[Name]' OR Subcode='$data[Name]'");
$num_total=mysql_num_rows($m_total);
$num_pages=$num_total/25;
$add=$num_total%25;
if ($add!=0)
$num_pages++;
//Index Pages
$page=$_GET[page];
if ($_GET[page]=="")
$page=1;
$start=$page*25 - 25;
if ($data[Subcode]!=0)
$showproducts=mysql_query("SELECT * FROM Products WHERE Category='$data[Name]' ORDER BY ProductName ASC LIMIT $start,25");
else
$showproducts=mysql_query("SELECT * FROM Products WHERE Category='$data[Name]' OR Subcode='$data[Name]' ORDER BY ProductName ASC LIMIT $start,25");
//Print Indexed Page Links
if ($num_total>25)
{
$prev=$page-1;
$next=$page+1;
echo '<table align="center" width="500"><tr><td align="left">Result Pages: ';
if ($page>1)
{
echo '<a href="'.$file.'?page='.$prev.'">';
echo '<img src="siteicons/arrow_left.png" align="center" border="0" alt="arrow right icon"/></a> ';
}
for ($i==0;$i<=$num_pages;$i++)
{
if ($i==$page)
echo '<a href="'.$file.'?page='.$i.'">'.$i.'</a> ';
else
echo '<a class="page" href="'.$file.'?page='.$i.'">'.$i.'</a> ';
}
if ($next<=$num_pages)
{
echo ' <a href="'.$file.'?page='.$next.'">';
echo '<img src="siteicons/arrow_right.png" border="0" align="center" alt="arrow right icon"/></a>';
}
echo '</td></tr></table>';
}
if ($num_total!=0)
{
echo '<table align="center" cellpadding="10" cellspacing="5" width="500"><tr><td style="background-image:url(pixel_1.png);" class="header" colspan="2" align="left">'.$data[Name].'</td></tr>';
while ($row=mysql_fetch_array($showproducts))
{
echo '<tr><td width="120" class="image"><a class="link" href="'.$row[Url].'" title="'.$row[ProductName].'"><img src="images/'.$row[Image].'" width="100" height="100" border="0" alt="'.$row[ProductName].'"/></a></td>';
echo '<td width="380" align="right" class="index"><a class="link" href="'.$row[Url].'">'.$row[ProductName].'</a></td></tr>';
}
echo '<tr><td align="left">Page Views:'.$current.'</td></tr></table>';
}
else
{
echo '<table align="center" cellpadding="10" cellspacing="5" width="500"><tr><td style="background-image:url(pixel_1.png);" class="header" colspan="2" align="left">'.$data[Name].'</td></tr>';
echo '<tr><td align="left">THERE ARE NO PRODUCTS IN THIS CATEGORY!</td></tr>';
echo '<tr><td align="left">Page Views:'.$current.'</td></tr></table>';
}
mysql_close($connect);
?>
</td>
<!--This Is The Right Column-->
<td width="215" valign="top" align="right">
<?php
include 'includes/column_right.php';
?>
</td>
<!--This Is The Footer Part-->
</tr><tr><td colspan="3" width="1030" align="center">
<?php
include 'footer.php';
?>
</td></tr>
<!--End Of Table-->
</table>
<table style="color:#272727;font-family:'Helvetica';font-size:8pt;border-width:1px;border-style:solid;border-top-style:none;border-color:#023f6a;width:1030px;height:30px;" align="center" cellspacing="0" cellpadding="5"><tr><td align="right">
<?php echo "Copyright".' '."©".' '.date(Y).' '."PangramSoft"; ?><a href="http://www.pointter.com" title="Pointter PHP Content Management System"><img src="siteicons/pointter_icon.png" border="0" align="right" alt="pointter icon"/></a></td></tr></table>
</body>
</html>