<?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.
*****************************************************************************/
setcookie ("tuser","",time()-86400);
setcookie ("tpass","",time()-86400);
unset ($_COOKIE[tuser]);
unset ($_COOKIE[tpass]);
include 'includes/settings_ini.php';
include 'includes/seo.php';
if ($member_onoff==0)
header ("location:index.php");
include 'configset/conn.php';
//Get Number Of Views
$prev=mysql_query("SELECT * FROM Views WHERE Url='logout.php'");
$prev_data=mysql_fetch_array($prev);
$current=$prev_data[Number] + 1;
//Record New Number Of Views
mysql_query("UPDATE Views SET Number='$current' WHERE Url='logout.php'");
//Get Total Number Of Views
$view_query=mysql_query("SELECT sum(Number) As TotalView FROM Views");
$tot_data=mysql_fetch_array($view_query);
$totalview=$tot_data[TotalView];
mysql_close($connect);
?>
<!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 width="1030" colspan="3" 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">
<table cellpadding="10" style="background-image:url(pixel_3.png);width:580px;" align="center"><tr><td style="background-image:url(pixel_1.png);" class="header" align="left"><b>Log Out Confirmation</b></td></tr>
<tr><td align="left"><img src="siteicons/success.png" align="left" alt="success icon"/> <font size="1">You Have Successfully Logged Out!</font></td></tr></table>
</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 width="1030" colspan="3" 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>