<?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
{
require_once("../connections/connection.php");
$pname=addslashes($pname);
$sdesc=addslashes(nl2br($sdec));
$fdesc=addslashes(nl2br($fdec));
$sql ="UPDATE `products` SET `cat_id` = '".$catid."' , `name` = '".$pname."', `short_desc` ='".$sdesc."' , `full_desc` ='".$fdesc."' ,";
$sql .=" `avaliable` = '".$aval."', `price` ='".$price."' WHERE id = ".$id." ";
$query=mysql_query($sql) or die(mysql_error());
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/viewproduct.php?sid='.$PHPSESSID.'">
<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> Please waite While We Process the Information ...<br>
waite .....</b>
</td>
</tr>
</table>
</td></tr>
</table>
</div>
</body>
</html>');
}
?>