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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head>
<body> <?php session_start(); require('check_admin.php'); require('bin/connectdb.php'); //เรียกไฟล์เชื่อมต่อกับฐานข้อมูล if(!empty($_POST['btSaveEdit'])){//มีการคลิกที่ปุ่มแก้ไข $msgError=''; if(!empty($_POST['cg_name'])){ $cg_id=$_GET['edit']; $cg_name=$_POST['cg_name'];//ชื่อหมวด $cg_des=$_POST['cg_des'];//คำอธิบายหมวด $cg_order=$_POST['cg_order'];//เรียงลำดับการแสดงผล mysql_query("UPDATE tbl_category SET cg_name='$cg_name',cg_des='$cg_des',cg_order='$cg_order' WHERE cg_id='$cg_id'"); }else{ $msgError.='กรุณากรอกชื่อหมวดกระทู้ด้วย<br />'; } if(empty($msgError)){ //หากสมาชิกพิมพ์ข้อมูลถูกต้อง ให้Redirect หน้าไปที่ไฟล์ category.php header("Location:category.php"); }else{ //หากกรอกข้อมูลไม่ถูกต้อง ให้สร้างตัวแปร session มารับค่าเพื่อแจ้งให้ทราบถึงปัญหาที่เกิดขึ้น $_SESSION['message_error']=$msgError; } } $show_category_edit=''; if(!empty($_GET['edit'])){//พบพารามิเตอร์แบบ get ชื่อ edit แสดงว่าต้องการแก้ไขข้อมูล $cg_id=$_GET['edit']; $rs_category_edit=mysql_query("SELECT * FROM tbl_category WHERE cg_id='$cg_id'") or die(mysql_error()); $rows_category_edit=mysql_num_rows($rs_category_edit); if($rows_category_edit>0){//มีข้อมูลของหมวดกระทู้ที่ต้องการแก้ไขในฐานข้อมูล $show_category_edit=mysql_fetch_assoc($rs_category_edit); }else{//ไม่พบข้อมูลของหมวดกระทู้ header('category.php'); } }else{//ไม่พบ ให้กลับไปหน้าเดิม header('category.php'); } ?> <html> <head> <?php require('head.php'); ?> <link rel="stylesheet" type="text/css" href="btvalidate/dist/css/bootstrapValidator.min.css"/> <script type="text/javascript" src="btvalidate/dist/js/bootstrapValidator.min.js"></script> <title>เพิ่มหมวดกระทู้</title> </head> <body> <?php require('menu.php'); ?> <div class="container"> <?php require('header.php'); ?> <div class="row ws-content"> <div class="col-md-4 col-sm-4 col-md-offset-4 col-sm-offset-4"> <h1>แก้ไขหมวดกระทู้</h1> <?php if (!empty($_SESSION['message_error'])) { //แสดงปัญที่เกิดขึ้นจากการไม่กรอกชื่อหมวดกระทู้ ?> <div class="alert alert-danger" role="alert"> <?php echo $_SESSION['message_error']; ?> </div> <?php $_SESSION['message_error'] = ''; } ?> <form method="post" enctype="multipart/form-data" id="categoryForm" name="categoryForm" action=""> <div class="form-group"> <label for="Category Name">ชื่อหมวดกระทู้</label> <input type="text" class="form-control" id="cg_name" name="cg_name" placeholder="ชื่อหมวดกระทู้" value="<?php echo $show_category_edit['cg_name']?>"> </div> <div class="form-group"> <label for="Category Description">คำอธิบาย</label> <textarea class="form-control" id="cg_des" name="cg_des" placeholder="คำอธิบายหมวดกระทู้" rows="5"><?php echo $show_category_edit['cg_des']?></textarea> </div> <div class="form-group"> <label for="Category Order">เรียงลำดับ</label> <input type="text" class="form-control" id="cg_order" name="cg_order" style="width:20%;" value="<?php echo $show_category_edit['cg_order']?>"> </div> <div class="form-group"> <input type="submit" class="btn btn-primary" name="btSaveEdit" value="แก้ไข" > </div> </form> </div> </div> <?php require('footer.php'); ?> </div> <script> $(document).ready(function() {//คำสั่งเช็ค การกรอกชื่อหมวดกระทู้ ภาษา Javascript โดยใช้ BootstrapValidator ปลั๊กอิน $('#categoryForm').bootstrapValidator({ feedbackIcons: { valid: 'glyphicon glyphicon-ok', invalid: 'glyphicon glyphicon-remove', validating: 'glyphicon glyphicon-refresh' }, fields: { cg_name: { validators: { notEmpty: { message: 'กรุณากรอก ชื่อหมวดกระทู้ ด้วย' } } } } }); }); </script> </body> </html> </body> </html>
|