<?php
/*
ArabCart, Free E-Commerce Solutions
http://www.arabcart.info
Copyright (c) 2005 Mhd Zaher Ghaibeh
Released under the GNU General Public License
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
USA.
*/
session_start();
if((!isset($admin))&&(!isset($upass)))
{
echo('<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset='.charset.'">
<link rel="stylesheet" href="../style/style.css" type="text/css">
<meta http-equiv="Refresh" content="0; URL=../admincp/index.php">
<title>Waite....</title>
</head>
<body>
<br>
<br>
<br>
<div align="center">
<br><br>
<table width="50%" border="1" class="border">
<tr><td class="border">
<table border="0" width="100%" id="table1" cellpadding="5" cellspacing="0">
<tr>
<td align="center">
<b>Sorry you can\'t Assecc <br> Please waite While you Redirected to the Login Page<br>
waite .....</b>
</td>
</tr>
</table>
</td></tr>
</table>
</div>
</body>
</html>');
}
else
{
include("../includes/lang-eng.php");
include("../connections/connection.php");
//added templates to deal with
include("addtmpl.php");
//add vars to the templates file
$template -> setAttribute("viewcat", "visibility", "visible");
// bring data from the products
$pquery=mysql_query("select * from categories order by id ") or die(mysql_error());
if(mysql_num_rows($pquery)!=0)
{
$template -> AddVar("viewcat","CAT-ID","Category ID");
$template -> AddVar("viewcat","CAT-NAME",catname);
$template -> AddVar("viewcat","EDIT",edit);
$template -> AddVar("viewcat","DELETE",del);
$template -> AddVar("viewcat","PARENT-CATEGORY",pcatego." ID");
while($row=mysql_fetch_object($pquery))
{
$template -> AddVar("viewcatelem","CAT-ID-DB",$row->id);
$template -> AddVar("viewcatelem","CAT-NAME-DB",$row->name);
$template -> AddVar("viewcatelem","PARENT-CATEGORY-NAME",$row->parent_id);
$template -> AddVar("viewcatelem","PCAT-ID",$row->parent_id);
$template -> AddVar("viewcatelem","CAT-ID",$row->id);
$template -> parseTemplate("viewcatelem","a");
}
}
elseif(mysql_num_rows($pquery)==0)
{
$template -> AddVar("viewcat","SORRY",nopro);
}
include("vars.php");
}
?>