|
|
|
รบกวนดู code ให้หน่อยได้ไหมคับ ผมทำการแก้ไขและลบข้อมูลผู้ดูแลระบบได้ไม่คับ |
|
|
|
|
|
|
|
โค้ดคับ
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
include ("connet.php");
?>
<?
$page=$_GET[page];
if ($page==""){
$page=1;
}
$each=5;
$sql_admin = "SELECT * FROM admin;";
$result_admin = mysql_query($sql_admin);
$totals=mysql_num_rows($result_admin);
$totalpages=ceil($totals/$each);
$goto=($page-1)*$each;
$sql_admin="SELECT * FROM admin ORDER BY admin_id DESC limit $goto,$each;";
$result_admin=mysql_query($sql_admin);
?>
<form method="post" action="admin_action.php">
<input type="hidden" name="do" value="add" />
<table width="534" border="0" align="center">
<tr bgcolor="#E0EEEE">
<th width="522" align="right" scope="col">::<img src="20121116050143551_easyicon_cn_32.png" alt="" width="20" height="20" /> เพิ่มผู้ดูแลระบบ::</th>
</tr>
</table>
<table width="534" border="0" align="center">
<tr>
<td width="151" align="right">E-mail ::</td>
<td width="373"><label for="email"></label>
<input type="text" name="email" id="email" /></td>
</tr>
<tr >
<td align="right">Password ::</td>
<td><label for="password">
<input type="password" name="password" id="password" />
</label></td>
</tr>
<tr >
<td align="right">ชื่อ-นามสกุล</td>
<td><label for="name">
<input type="text" name="name" id="name" />
</label></td>
</tr>
<tr align="right">
<td>Tel ::</td>
<td align="left"><input type="text" name="tel" id="tel"></td>
</tr>
<tr align="right">
<td colspan="2" align="center"><input type="submit" name="button" id="button" value="เพิ่มผู้ดูแลระบบ" />
<input type="reset" name="button2" id="button2" value="ยกเลิก" />
<input type="hidden" name="id_admin" value="<?=$total; ?>" /></td>
</tr>
</table></form>
<table width="591" border="0" align="center" cellpadding="2" cellspacing="0">
<tr align="center" bgcolor="#E0EEEE">
<td width="91">ลำดับที่ </td>
<td width="139">ชื่อผู้ใช้ </td>
<td width="127">รหัสผ่าน </td>
<td width="127">ชื่อ - นามสกุล </td>
<td width="132">รายละเอียด</td>
<td width="59">แก้ไข</td>
<td width="98">ลบ</td>
</tr>
<?
$strRow=0;
$strRow=($each*$page)-$each;//การกำหนดลำดับสินค้า
while ($cs = mysql_fetch_array($result_admin)){
$strRow++;//ลำดับเพิ่มทีละ 1 นั้นเอง
$sql = "select * from admin where admin_id='".$cs['admin_id']."'";
$dbquery = mysql_query($sql);
$num_rows = mysql_num_rows($dbquery);
?>
<tr align="center">
<td><? echo $strRow ?></td>
<td><? echo $cs['email'] ?></td>
<td><? echo $cs['password'] ?></td>
<td><? echo $cs['name'] ?></td>
<td align="center"><a href="showadmin.php?ty=<?=$cs['logname'] ?>"><img src="20121116050309842_easyicon_cn_128.png" alt="" width="20" height="20" /></a></td>
<td><a href ="admin_action.php?do=frmedit&id=<? echo $$cs['admin_id'] ?>"><img src="20121116050301729_easyicon_cn_80.png" alt="" width="20" height="20" /></a></td>
<td align="center"><a href="admin_action.php?do=delete&id=<? echo $cs['admin_id'] ?>"><img src="20121116050436121_easyicon_cn_128.png" alt="" width="20" height="20" /></a></td>
</tr>
<?
}
?>
<tr align="left">
<td colspan="4">รายการ <?=$totals?> หน้า :
<? //Code ใช้ เมื่อ จำนวนหน้ามากกว่า 1 หน้า
if($totalpages>1) {
for ($i=1;$i<=$totalpages;$i++){
if($i==$page) {
echo "<b>หน้า $page </b>";
} else {
echo " | <a href=\"admin.php?page=$i\">$i</a> ";
}
}
}
?>
</td>
</table>
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
include "connet.php";
if ($_POST['do']=="add"){
$email=$_POST['email'];
$password=$_POST['password'];
$name=$_POST['name'];
$tel=$_POST['tel'];
$sql="select * from admin where email='$email'";//ส่วนใหญ่ผิดบรรทัดนี้
$query = mysql_query($sql);
$result = mysql_fetch_array($query);
if($result){
echo "<script language='javascript'>";
echo "alert('E-mail นี้มีอยู่ในระบบแล้ว');";
echo "window.location='admin.php';";
echo "</script>";
}else{
$sql_add = "INSERT INTO admin (email,password,name,tel) VALUES ('$email','$password','$name','$tel');";
$result_add=mysql_query($sql_add);
echo "<script language='javascript'>";
echo "alert('เพิ่มข้อมูลผู้ดูแลระบบเรียบร้อย');";
echo "window.location='admin.php';";
echo "</script>";
}
}elseif ($_POST['do']=="delete"){
$sql="DELETE FROM admin WHERE email='$_POST[id]';";
$result=mysql_query($sql);
if($result){
echo"ระบบได้ทำการลบข้อมูลผู้ดูแลระบบเรียบร้อยแล้ว $result_del";
echo"<meta http-equiv='refresh' content='2;url=indexadmin.php'>";
}else{
echo"ไม่สามารถลบข้อมูลผู้ดูแลระบบได้";
}
}elseif ($_POST['do']=="frmedit"){//ต้องมีการโหลด From ขึ้นมาใหม่...ถ้า ['do']=="frmedit" จริง มันจะใช้คำสั่ง$sql="SELECT * FROM tbcategory WHERE catid =$_POST[id]"; คือเรียกขึ้นม่า 1 record
$sql="SELECT * FROM admin WHERE email =$_POST[id]";//เมื่อคลิก ปุ่มแก้ไขมันจะส่งค่าไป
$result=mysql_query($sql);
$dbarr=mysql_fetch_array($result);
?>
<form method="post" action="admin_action.php?do=edit">
<table width="534" border="0" align="center">
<tr align="right" >
<td width="151">รหัสผู้ดูแลระบบ::</td>
<td align="left"><?=$dbarr['admin_id']; ?></td>
</tr>
<tr >
<td align="right">Login ::</td>
<td><label for="email"></label>
<input name="email" type="text" id="email" value="<?=$dbarr['email']; ?>"/></td>
</tr>
<tr >
<td align="right">Password ::</td>
<td><label for="password"></label><input name="password" type="text" id="password" value="<?=$dbarr['password']; ?>"/></td>
</tr>
<tr >
<td align="right">ชื่อ-นามสกุล</td>
<td><label for="name">
</label><input name="name" type="text" id="name" value="<?=$dbarr['name']; ?>"/></td>
</tr>
<tr align="right">
<td colspan="2" align="center">
<div align="center">
<input type="hidden" name="id" value="<?=$dbarr['admin_id'];?>">
<input type="submit" name="button" id="button" value="บันทึก" />
<input type="reset" name="button2" id="button2" value="ยกเลิก" />
</div></td>
</tr>
</table>
</form>
<?
}elseif ($_POST['do']=="edit"){
$email=$_POST['email'];
$password=$_POST['password'];
$name=$_POST['name'];
$tel=$_POST['tel'];
$sql_update = "UPDATE admin SET email='$email',password='$password',name='$name' WHERE admin_id='$_POST[id]'";
$result_update=mysql_query($sql_update);
if($result_update){
echo"ระบบได้ทำการแก้ไขข้อูลผู้ดูแลระบบเรียบร้อยแล้ว";
echo "<meta http-equiv='refresh' content='2;url=admin.php'>";
}else{
echo"ไม่สามารถแก้ไขข้อมูลได้";
}
}
?>
Tag : PHP, MySQL, HTML/CSS, JavaScript, jQuery, CakePHP
|
|
|
|
|
|
Date :
2012-12-11 21:13:39 |
By :
มานะ |
View :
849 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มีการแสดง error อะไรรึป่าวครับ
|
|
|
|
|
Date :
2012-12-11 21:40:13 |
By :
iieszz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เลยคับไม่มีการแสดงอะไรเลยคับ. ..ทำยังไงดีคับผม งง มากเลยคับ
|
|
|
|
|
Date :
2012-12-11 21:52:28 |
By :
มานะ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$result_update=mysql_query($sql_update) or die(mysql_error());
เอา error มาดูครับ
|
|
|
|
|
Date :
2012-12-12 05:52:48 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ error นะคับแต่ช่อง url ขึ้น http://localhost/Maefahluang/admin_action.php?do=frmedit&id= เวลาเราจะแก้ไขคับ.. ..ส่วนเวลาเราลบ ช่อง url จะขึ้น http://localhost/Maefahluang/admin_action.php?do=delete&id=7 แต่ไม่สามารถลบได้. ..ตอนนี้ส่วนเพิ่มก็ไม่สามารถเพิ่มได้คับ
|
|
|
|
|
Date :
2012-12-12 15:45:33 |
By :
มานะ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลิงค์ก่อนกดเข้ามาแก้ไขเป็นไงครับ
|
|
|
|
|
Date :
2012-12-12 15:51:30 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
http://localhost/Maefahluang/admin.php แบบนี้คับ
|
|
|
|
|
Date :
2012-12-12 20:34:34 |
By :
มานะ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|