<?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.
*****************************************************************************/
if (!isset($_COOKIE['tuser']) OR !isset($_COOKIE['tpass']))
{
header("location:index.php");
}
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='memberinfo.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='memberinfo.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" width="590" align="center" cellspacing="0"><tr><td style="background-image:url(pixel_1.png);" class="header" align="left">
<b>My Blogs</b></td></tr><tr><td style="border-left-style:solid;border-right-style:solid;border-bottom-style:solid;border-width:1px;border-color:#c5c5c5;">
<div style="text-align:left;padding-top:5px;padding-bottom:10px;">
<?php
include 'configset/conn.php';
$blog_num=mysql_query("SELECT * FROM Blog WHERE Email='$_COOKIE[tuser]' ORDER BY BlogID ASC");
$num_total=mysql_num_rows($blog_num);
$num_pages=$num_total/5;
$add=$num_total%5;
if ($num_total!=0)
{
if ($add!=0)
$num_pages++;
//Index Pages
$page=$_GET[page];
if ($_GET[page]=="")
$page=1;
$start=$page*5 - 5;
$blog_data=mysql_query("SELECT * FROM Blog WHERE Email='$_COOKIE[tuser]' ORDER BY BlogID ASC LIMIT $start,5");
//Print Indexed Page Links
if ($num_total>5)
{
$prev=$page-1;
$next=$page+1;
if ($page>1)
{
echo '<a href="memberblogs.php?page='.$prev.'">';
echo '<img src="siteicons/arrow_left.png" align="middle" border="0" alt="arrow_left"/></a> ';
}
for ($i==0;$i<=$num_pages;$i++)
{
if ($i==$page)
echo '<a class="headlist" href="memberblogs.php?page='.$i.'">'.$i.'</a> ';
else
echo '<a href="memberblogs.php?page='.$i.'">'.$i.'</a> ';
}
if ($next<=$num_pages)
{
echo ' <a href="memberblogs.php?page='.$next.'">';
echo '<img src="siteicons/arrow_right.png" border="0" align="middle" alt="arrow_right"/></a>';
}
}
echo '</div><div>';
while ($row=mysql_fetch_array($blog_data))
{
echo '<table cellpadding="0" cellspacing="0" style="width:560px;" align="center"><tr><td style="background-image:url(blog_bar.png);width:560px;height:16px;text-align:right;padding-right:10px;">';
echo $row[Date];
echo '</td></tr><tr>
<td valign="top" style="border-left-style:solid;border-right-style:solid;border-bottom-style:solid;border-width:1px;border-color:#c5c5c5;width:560px;height:50px;padding-left:10px;padding-top:5px;text-align:left;">';
echo $row[Content];
echo '</td></tr></table><table style="text-align:left;padding-left:20px;padding-bottom:15px;padding-top:5px;"><tr><td width="280"><a href="'.$row[Url].'">See Product Page</a></td><td width="280" style="text-align:right;padding-right:20px;">';
echo '<a href="functions/deletecomment.php?id='.$row[BlogID].'">Delete Blog</a></td></tr></table>';
}
echo '</td></tr></table>';
}
else
{
echo "YOU DO NOT HAVE ANY BLOGS YET!";
echo '</td></tr></table>';
}
mysql_close($connect);
?>
</div>
</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>