-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddproduct.php
66 lines (66 loc) · 2.13 KB
/
addproduct.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
$page_title='Trang thêm sản phẩm';
include('tmp/header.inc');
include('tmp/left_sidebar.inc');
echo '<div id="center_column">';
if(isset($_SESSION['uid']) && $_SESSION['uid']==1){
if(isset($_POST['submit'])){
require_once('tmp/connectdb.php');
$message=NULL;
if(empty($_POST['tensp']))
$tsp=false;
else
$tsp=escape_data($_POST['tensp']);
if(empty($_POST['hangsx']))
$hsx=false;
else
$hsx=escape_data($_POST['hangsx']);
if(empty($_POST['gia']))
$gia=false;
else
$gia=escape_data($_POST['gia']);
if(empty($_POST['mota']))
$mt=false;
else
$mt=escape_data($_POST['mota']);
if($tsp && $hsx && $gia && $mt){
require_once('tmp/connectdb.php');
$query="insert into sanpham (tensp,hangsx,gia,mota) values ('$tsp','$hsx','$gia','$mt')";
$result=@mysql_query($query);
if($result)
echo '<p><font color="green">Bạn đã thêm 1 sản phẩm thành công!</font></p>';
else
$message='<p>Quá trình nhập sản phẩm bị lỗi:</p><p>'.mysql_error().'</p>';
mysql_close();
}
else
$message.='<p>Hãy thử lại sau!</p>';
}
if(isset($message))
echo '<font color="red">'.$message.'</font>';
?>
<body>
<p><h1 align="center">THÊM SẢN PHẨM</h1></p>
<form id="formThemSanPham" method="post" action="">
<fieldset>
<legend>Thêm mới sản phẩm</legend>
<label id="first" for="tensp">Tên sản phẩm:</label>
<input type="text" name="tensp" id="tensp" required /><br>
<label for="hangsx">Hãng sản xuất:</label>
<input type="text" name="hangsx" id="hangsx" required /><br>
<label for="gia">Giá:</label>
<input type="text" name="gia" id="gia" required /><br>
<label for="mota">Mô tả:</label>
<textarea name="mota" id="mota" cols="30" rows="10" required></textarea><br>
<input type="submit" name="submit" id="Thêm" value="Thêm" />
<input type="reset" name="reset" id="reset" value="Xóa" />
</fieldset>
</form>
<?php
}
else
echo '<p><font color="red">Bạn không có quyền xem trang này!</font></p>';
echo '</div>';
include('tmp/right_sidebar.inc');
include('tmp/footer.inc');
?>