<?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 ($member_position==0)
include 'includes/member.php';
if ($t_position==0)
include 'includes/datatoday.php';
if ($position==0)
include 'categories.php';
if ($m_position==0)
include 'mostviews.php';
if ($n_position==0)
include 'newestitems.php';
include 'configset/conn.php';
$data_box=mysql_query("SELECT * FROM Box WHERE Position=0");
while ($box_row=mysql_fetch_array($data_box))
{
echo '<table cellspacing="0" cellpadding="10" style="background-image:url(pixel_3.png);width:210px;" align="center"><tr><td style="background-image:url(pixel_1.png);" class="header" align="left"><b>'.$box_row[Name].'</b></td></tr>';
echo '<tr><td align="left">';
$datain_box=mysql_query("SELECT * FROM Static WHERE Boxname='$box_row[Name]'");
while ($boxin_row=mysql_fetch_array($datain_box))
echo '<a class="link" href="'.$boxin_row[Url].'">'.$boxin_row[Name].'</a><br/>';
echo '</td></tr></table><br/><br/>';
$x++;
}
mysql_close($connect);
?>