เรื่อง log out กับ การเพิ่มเพิ่มหมวดสินค้าและรูปแบบการแสดงผลครับ
Code (PHP)
<?
session_start();
session_destroy();
echo "<script>alert('ขอบคุณเหล่า Admin ที่สนับสนุน shopping film ครับ'); window.location:'admin.php';</script>";
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
Date :
2014-02-02 16:13:04
By :
arm8957
อ่ะที่ผมใช้ คือเซ็คตัวแปร session ให้เป็นค่าว่าง หรือ NULL ดูเป็นแนวครับ ถ้ายังไม่ได้อีก ก็ตัวใครตัวมันครับ
Code (PHP)
<?php
ob_start();
session_start();
if(isset($_SESSION['sess_id']) || isset($_SESSION['mem_uname'])){
$_SESSION['11111'] = NULL;
$_SESSION['22222'] = NULL;
$_SESSION['33333'] = NULL;
$_SESSION['44444'] = NULL;
session_destroy();
}
if(empty($_SESSION['1111'])){
header('location:index.php');
exit();
}
?>
Date :
2014-02-02 21:19:10
By :
arm8957
ตอบข้อ 2 คับ
Code (PHP)
<?
session_start();
if ($_SESSION["ad_card"]==null){
echo "<script>alert('กรุณาทำการ Log in ครับ'); location='admin.php';</script> ";} ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Admin_Home</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<? include"../connectDB.inc"; include("setting.php") ?>
<div id="increase">
<form action="admin_add_product_type.php" method="post">
<table width="400" align="center" border="0">
<tr>
<td width="100"><font color="#FFFFFF">เพิ่มหมวดสินค้า</font></td>
<td><input type="text" name="product_type" size="30"></td>
</tr>
<tr>
<td width="150"></td>
<td><input name="Submit" type="submit" value="เพิ่มข้อมูล">
<input name="Reset" type="reset" value="ยกเลิก"></td>
</tr>
</table>
</form></div>
<div id="content">
<?
$no = 0;
$sql = "select * from country";
$result = mysql_db_query($dbname,$sql);
$num = mysql_num_rows($result);
if($num>0){
$show = "<table width=600 cellpadding=4 align=center border>";
$show .= "<tr bgcolor=#00CCCC align=center><td>ลาดับ</td><td> ประเภทสินค้า </td><td> แก้ไข</td><td> ลบ</td></tr>";
while ($rs = mysql_fetch_array($sql)){
$show .= "<td align=center>$rs[country_code]</td>";
$show .= "<td> $rs[country_name] </td>";
$show .= "<td align=center><a href=admin_edit_country.php?id=$rs[country_code]>แก้ไข</a></td>";
$show .= "<td align=center><a href=admin_delete_country.php?id=$rs[country_code] onclick=\"return confirm('ยืนยันการลบข้อมูล?')\">ลบ</a></td>";
$show .= "</tr>";
}
$show .= "</table>";
echo $show;
}
mysql_close();
?>
</div>
</body>
</html>
Date :
2014-02-03 02:01:10
By :
tomrambo
echo "<script>alert('ขอบคุณเหล่า Admin ที่สนับสนุน shopping film ครับ'); location: 'admin.php';</script>";
echo "<script>alert('ขอบคุณเหล่า Admin ที่สนับสนุน shopping film ครับ'); location= 'admin.php';</script>";
ประวัติการแก้ไข 2014-02-03 13:07:28
Date :
2014-02-03 13:07:32
By :
sakuraei
32.$sql =mysql_query("select * from country");
33.$result = mysql_db_query($dbname,$sql) or die(mysql_error());
34.$num = mysql_num_rows($result);
38.while ($rs = mysql_fetch_array($result )){
Date :
2014-02-03 15:06:46
By :
sakuraei
คราวนี้น่าจะโอเคแล้วคับ
Code (PHP)
<?
session_start();
if ($_SESSION["ad_card"]==null){
echo "<script>alert('กรุณาทำการ Log in ครับ'); location='admin.php';</script> ";} ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Admin_Home</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<? include"../connectDB.inc"; include("setting.php") ?>
<div id="increase">
<form action="admin_add_product_type.php" method="post">
<table width="400" align="center" border="0">
<tr>
<td width="100"><font color="#FFFFFF">เพิ่มหมวดสินค้า</font></td>
<td><input type="text" name="product_type" size="30"></td>
</tr>
<tr>
<td width="150"></td>
<td><input name="Submit" type="submit" value="เพิ่มข้อมูล">
<input name="Reset" type="reset" value="ยกเลิก"></td>
</tr>
</table>
</form></div>
<div id="content">
<?
$no = 0;
$sql = "select * from country";
$result = mysql_db_query($dbname,$sql);
$num = mysql_num_rows($result);
if($num>0){
$show = "<table width=600 cellpadding=4 align=center border>";
$show .= "<tr bgcolor=#00CCCC align=center><td>ลาดับ</td><td> ประเภทสินค้า </td><td> แก้ไข</td><td> ลบ</td></tr>";
while ($rs = mysql_fetch_array($result)){
$show .= "<td align=center>$rs[country_code]</td>";
$show .= "<td> $rs[country_name] </td>";
$show .= "<td align=center><a href=admin_edit_country.php?id=$rs[country_code]>แก้ไข</a></td>";
$show .= "<td align=center><a href=admin_delete_country.php?id=$rs[country_code] onclick=\"return confirm('ยืนยันการลบข้อมูล?')\">ลบ</a></td>";
$show .= "</tr>";
}
$show .= "</table>";
echo $show;
}
mysql_close();
?>
</div>
</body>
</html>
Date :
2014-02-03 18:57:47
By :
tomrambo
อันนี้จะเป็นการเพิ่มหมวดลงไปอ่ะครับ
คือ ว่าผมเขียนโค้ดตัวนี้เพื่อที่จะทำการเพิ่มหมวดสินค้าไปยังฐานข้อมูลแต่ว่าลองเพิ่มแต่กลับ error ลองใส่คำว่า "หนังอินเดีย" ก็ขึ้น
ไม่สามารถเพิ่มหมวดสินค้าได้
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'values ('','หนังอินเดีย')' at line 1
โค้ดตัวนี้เป็นโค้ดที่เชื่อมต่อกับโค้ด ข้อ2 ที่แก้ได้แล้วครับ
Code (PHP)
<?
session_start();
if ($_SESSION["ad_card"]==null){
echo "<script>alert('กรุณาทำการ Log in ครับ'); location='admin.php';</script> ";} ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Admin_Home</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<? include"../connectDB.inc"; include("setting.php") ?>
<div id="increase">
<form action="admin_add_country.php" method="post">
<table width="400" align="center" border="0">
<tr>
<td width="100" ><font color="#FFFFFF"><b>เพิ่มหมวดสินค้า</b></font></td>
<td><input type="text" name="country" size="30"></td>
</tr>
<tr>
<td width="150"></td>
<td><input name="Submit" type="submit" value="เพิ่มข้อมูล">
<input name="Reset" type="reset" value="ยกเลิก"></td>
</tr>
</table>
</form></div>
<div id="content">
<?
$no = 0;
$sql = "select * from country";
$result = mysql_db_query($dbname,$sql) or die(mysql_error());
$num = mysql_num_rows($result);
if($num>0){
$show = "<table width=500 cellpadding=4 align=center border bgcolor='#FFFFFF'>";
$show .= "<tr bgcolor=#00CCCC align=center><td>ลำดับ</td><td> ประเภทสินค้า </td><td> แก้ไข</td><td> ลบ</td></tr>";
while ($rs = mysql_fetch_array($result)){
$show .= "<td align=center>$rs[country_code]</td>";
$show .= "<td> $rs[country_name] </td>";
$show .= "<td align=center><a href=admin_edit_country.php?id=$rs[country_code]>แก้ไข</a></td>";
$show .= "<td align=center><a href=admin_delete_country.php?id=$rs[country_code] onclick=\"return confirm('ยืนยันการลบข้อมูล?')\">ลบ</a></td>";
$show .= "</tr>";
}
$show .= "</table>";
echo $show; }
mysql_close();
?>
</div>
</body></html>
add_country
Code (PHP)
<?
session_start();
if ($_SESSION["ad_card"]==null){
echo "<script>alert('กรุณาทำการ Log in ครับ'); location='admin.php';</script> ";} ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<? include"../connectDB.inc"; include("setting.php") ?>
<?
$pname = $_POST["country"];
$sql = "insert into country (country_code, country_name values ('','$pname')";
mysql_query($sql, $conn)
or die ("ไม่สามารถเพิ่มหมวดสินค้าได้<br>" .mysql_error());
mysql_close($conn);
echo "<meta http-equiv='refresh' content='0;
url=admin_country.php'>";
?>
</body>
</html>
ประวัติการแก้ไข 2014-02-04 00:20:08
Date :
2014-02-04 00:18:01
By :
sesepat
Load balance : Server 04