<?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();
include("includes/lang-eng.php");
if ( ($id<0) || (!is_numeric($id)) || ($id==0) )
{
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="3; URL=index.php?sid='.$PHPSESSID.'">
<title>'.titel.'</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> '.not_allowed_op.' </b>
</td>
</tr>
</table>
</td></tr>
</table>
</div>
</body>
</html>');
}
else
{
require_once("info.php");
$to=$_ContactPerson;
$subject = "Comments ".$PHPSESSID." ";
if($id==1)
{
$message="
<table width='100%'>
<tr>
<td><b>Email</b> :</td>
<td>".$email."</td>
</tr>
<tr>
<td><b>Comments</b> :</td>
<td>".nl2br($comments)."</td>
</tr>
</table>";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=".charset."\r\n";
$headers .= "To: <".$to.">\r\n" ;
$headers .= "From:<".$email.">\r\n";
mail($to, $subject, $message, $headers);
}
elseif($id==2)
{
$message="
<table width='100%'>
<tr>
<td><b>Full Name</b> :</td>
<td>".$fname." ".lname."</td>
</tr>
<tr>
<td><b>Email</b> :</td>
<td>".$email."</td>
</tr>
<tr>
<td><b>Phone Number</b> : </td>
<td>".$phoneno."</td>
</tr>
<tr>
<td><b>Comments</b> :</td>
<td>".nl2br(stripslashes($faddress))."</td>
</tr>
</table>";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=".charset."\r\n";
$headers .= "To: <".$to.">\r\n" ;
$headers .= "From: ".$fname." ".$lname."<".$email.">\r\n";
mail($to, $subject, $message, $headers);
}
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=index.php?sid='.$PHPSESSID.'">
<title>'.titel.'</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> '.thanks.' </b>
</td>
</tr>
</table>
</td></tr>
</table>
</div>
</body>
</html>');
}
?>