|
|
|
ช่วยดูให้หน่อยครับ พอดีอัพเดทแล้วมันเป็นการเพิ่มใหม่ครับ |
|
|
|
|
|
|
|
คอนเซปประมาณว่า ให้ user กรอกข้อมูลการร้องขอให้ admin(โดยที่ข้อมูลนั้นจะดึงจากการ login ของผู้ใช้ ตรงนี้ทำได้แล้ว) ส่วน admin จะทำการตอบกลับคำร้องขอนั้น(จะมีแค่ชื่อของ admin ที่ได้จากการ login) ประมาณนี้ครับ
ลองทำแล้ว ให้ admin ตอบกลับ มันไม่ update แต่มันจะเพิ่มใหม่แทน <-- แก้ไขตรงไหนดีครับ
และอยากให้ admin แนบไฟล์ได้ด้วย <-- จะทำไงดีครับ หรือต้องทำอัพโหลดไฟล์ครับ
Code page_admin(เอามาดูเพื่อตรงนี้ผิด)(PHP)
<?
$host = "localhost";
$user = "root";
$pass = "123456";
$dbname = "dbboard";
$obj_con = mysql_connect($host,$user,$pass);
mysql_select_db($dbname,$obj_con);
mysql_query("SET NAMES UTF8");
$str_sql = "SELECT * FROM pending ORDER BY pen_id ASC";
$rs_user = mysql_query($str_sql,$obj_con);
?>
<table align="center" style="width: 100%">
<tr align="center" style="width: 99%; background-color: #CCCCCC;">
<td style="height: 30px; width: 4%;">No.</td>
<td style="height: 30px; width: 23%;">เรื่อง</td>
<td style="height: 30px; width: 12%;">ผู้ส่งคำขอ</td>
<td style="height: 30px; width: 15%;">แผนก</td>
<td style="height: 30px; width: 15%;">ตำแหน่ง</td>
<td style="height: 30px; width: 5%;">โทร.</td>
<td style="height: 30px; width: 12%;">ผู้รับคำขอ</td>
<td style="height: 30px; width: 10%;">สถานะ</td>
<td style="height: 30px; width: 40px;">ดู</td>
<td style="height: 30px; width: 40px;">ลบ</td>
</tr>
<?
while($row_user3 = mysql_fetch_array($rs_user)) {
$pen_id=$row_user3[pen_id];
?>
<tr align="" style="width: 99%; background-color: #EEEEEE;"
onMouseover=this.style.backgroundColor='#CCCCCC';
onMouseout=this.style.backgroundColor='#EEEEEE';>
<td style="height: 30px; width: 4%;"><center><?php echo $pen_id ?></center></td>
<td style="height: 30px; width: 23%;"><?php echo $row_user3["pen_name"];?></td>
<td style="height: 30px; width: 12%;"><?php echo $row_user3["fname"];?> <?php echo $row_user3["lname"];?></td>
<td style="height: 30px; width: 15%;"><?php echo $row_user3["dep_name"];?></td>
<td style="height: 30px; width: 15%;"><?php echo $row_user3["pos_name"];?></td>
<td style="height: 30px; width: 5%;"><?php echo $row_user3["teldep"];?></td>
<td style="height: 30px; width: 12%;"><?php echo $row_user3["pen_admin"];?></td>
<td style="height: 30px; width: 10%;"><?php echo $row_user3["pen_status"];?></td>
<td style="height: 30px; width: 40px;"><div><a href="request_admin_view.php"><img src='images/manage/1440760655_edit.png' width='40px' height='40px' style="float: right" /></a></div></td>
<td style="height: 30px; width: 40px;"><?php echo "<A HREF=\"request_admin_del.php?id_del=$pen_id\"
Onclick=\"return confirm('ยืนยันลบคำขอ $pen_name ออกจากระบบ')\"><center><img src='images/manage/1440760644_delete.png' width='40' height='40' /></center></A>"; ?></td>
</tr>
<?
}
?>
</table>
Code request_admin_view(PHP)
<?php
session_start();
if($_SESSION['user_id'] == "")
{
echo "Please Login!";
exit();
}
?>
<?
$id_edit=$_GET[id_edit];
include"connect.php";
$sql="select * from pending where pen_id='$id_edit'";
$result=mysql_db_query($dbname,$sql);
$rs=mysql_fetch_array($result);
$pen_id=$rs[pen_id];
$fname=$rs[fname];
$lname=$rs[lname];
$nname=$rs[nname];
$sex=$rs[sex];
$dep_name=$rs[dep_name];
$teldep=$rs[teldep];
$pos_name=$rs[pos_name];
$pen_name=$rs[pen_name];
$pen_notes=$rs[pen_notes];
$pen_admin=$rs[pen_admin];
$pen_notes_admin=$rs[pen_notes_admin];
$pen_status=$rs[pen_status];
$pen_upload=$rs[pen_upload];
?>
<?
include"connect.php";
$sql="select * from pending ORDER BY pen_id ASC";
$result=mysql_db_query($dbname,$sql);
$number=mysql_num_rows($result);
$no=1;
?>
<!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 content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>การร้องขอเอกสาร</title>
<link rel="shortcut icon" href="images/hospital.png"/>
<style>
body {
background: url('images/bg.jpg') top center ;
background-attachment:fixed;
background-size: 100%;
background-origin: content;
background-repeat: no-repeat;
}
.auto-style1 {
text-align: center;
}
.auto-style2 {
text-align: center;
font-size: x-large;
}
</style>
</head>
<body>
<div><a href="page_admin.php"><img src='images/manage/1440760696_home.png' width='40px' height='40px' style="float: right" /></a></div>
<br/><br/><br/>
<form name="form1" method="post" action="request_admin_view_add.php">
<table style="background-size: 100% 100%; width: 580px; background-image: url('images/KPK4PR-3.png'); background-repeat: no-repeat; background-attachment: scroll; height: 550px;" align="center">
<tr>
<td colspan="6" style="height: 220px"></td>
</tr>
<tr>
<td style="height: 40px"></td>
<td style="height: 40px; " colspan="4" class="auto-style2"><strong>ร้องขอเอกสาร</strong></td>
<td style="height: 40px"></td>
</tr>
<tr>
<td style="height: 10px"></td>
<td style="background-position: center center; background-size: 100% 100%; height: 10px; background-image: url('images/line.png'); background-repeat: no-repeat;" colspan="4" class="auto-style2"></td>
<td style="height: 10px"></td>
</tr>
<tr>
<td style="width: 50px; height: 35px;"></td>
<td style="width: 85px; height: 35px;"><strong> ชื่อ</strong></td>
<td style="width: 155px; height: 35px;"><input name="fname" value="<?=$fname;?>" style="height: 90%; width: 80%" type="text" disabled/></td>
<td style="width: 75px; height: 35px;"><strong> สกุล</strong></td>
<td style="width: 165px; height: 35px;"><input name="lname" value="<?=$lname;?>" style="height: 90%; width: 80%" type="text" disabled/></td>
<td style="width: 50px; height: 35px;"></td>
</tr>
<tr>
<td style="width: 50px; height: 35px;"></td>
<td style="width: 85px; height: 35px;"><strong> ชื่อเล่น</strong></td>
<td style="width: 155px; height: 35px;"><input name="nname" value="<?=$nname;?>" style="height: 90%; width: 80%" type="text" disabled/></td>
<td style="width: 75px; height: 35px;"><strong> ติดต่อ</strong></td>
<td style="width: 165px; height: 35px;"><input name="teldep" value="<?=$teldep;?>" style="height: 90%; width: 80%" type="text" disabled/></td>
<td style="width: 50px; height: 35px;"></td>
</tr>
<tr>
<td style="width: 50px; height: 35px;"></td>
<td style="width: 85px; height: 35px;"><strong> แผนก</strong></td>
<td style="height: 35px; " colspan="3"><input name="dep_name" value="<?=$dep_name;?>" style="height: 90%; width: 92%" type="text" disabled/></td>
<td style="width: 50px; height: 35px;"></td>
</tr>
<tr>
<td style="width: 50px; height: 35px;"></td>
<td style="width: 85px; height: 35px;"><strong> ตำแหน่ง</strong></td>
<td style="height: 35px; " colspan="3"><input name="pos_name" value="<?=$pos_name;?>" style="height: 90%; width: 92%" type="text" disabled/></td>
<td style="width: 50px; height: 35px;"></td>
</tr>
<tr>
<td style="width: 50px; height: 35px;"></td>
<td style="width: 85px; height: 35px;"><strong> เรื่องที่ขอ</strong></td>
<td style="height: 35px;" colspan="3" ><input name="pen_name" value="<?=$pen_name;?>" placeholder=" พิมพ์คำบรรยายคราวๆ" style="height: 90%; width: 92%" type="text" disabled/></td>
<td style="width: 50px; height: 35px"></td>
</tr>
<tr style="border-bottom-style: dotted">
<td style="width: 50px; height: 50px;"></td>
<td style="width: 85px; height: 50px;"><strong> หมายเหตุ</strong></td>
<td style="height: 50px;" colspan="3"><textarea name="pen_notes" value="<?=$pen_notes;?>" placeholder=" พิมพ์เพิ่มเติม ให้ละเอียด" style="width: 91.5%; height: 90%" disabled></textarea></td>
<td style="width: 50px; height: 50px;"></td>
</tr>
<tr style="border-bottom-style: dotted">
<td style="width: 50px; height: 10px;"></td>
<td style="background-position: center; background-size: 100% 100%; height: 10px; background-image: url('images/line.png'); background-repeat: no-repeat;" colspan="4"></td>
<td style="height: 10px;"></td>
</tr>
<!---------------------------------------------------------------------------------------------------------------------------------------------------------->
<?
$strSQL = "SELECT * FROM member WHERE user_id = '".$_SESSION['user_id']."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
?>
<tr>
<td style="width: 50px; height: 35px;"></td>
<td style="width: 85px; height: 35px;"><strong> Admin</strong></td>
<td style="height: 35px;" colspan="3"><input name="pen_admin" value="<?php echo $objResult["fname"];?> <?php echo $objResult["lname"];?>" placeholder=" ชื่อ-สกุล ของ Admin" style="height: 90%; width: 92%" type="text" /></td>
<td style="width: 50px; height: 35px"></td>
</tr>
<tr>
<td style="height: 50px;"></td>
<td style="height: 50px;"><strong> หมายเหตุ</strong></td>
<td style="height: 50px;" colspan="3"><textarea name="pen_notes_admin" value="<?=$pen_notes_admin;?>" placeholder=" ตอบกลับเพิ่มเติม จาก Admin" style="width: 91.5%; height: 90%" ></textarea></td>
<td style="height: 50px;"></td>
</tr>
<tr>
<td style="width: 50px; height: 35px;"></td>
<td style="width: 85px; height: 35px;"><strong> สถานะ</strong></td>
<td style="height: 35px;" colspan="3"><input name="pen_status" value="<?=$penstatus;?>" placeholder=" รอการเปลี่ยนแปลงสถานะ จาก Admin" style="height: 90%; width: 92%" type="text" /></td>
<td style="width: 50px; height: 35px"></td>
</tr>
<tr>
<td style="width: 50px; height: 30px;"></td>
<td style="width: 85px; height: 30px;"></td>
<td style="height: 30px;" colspan="3"><input name="pen_upload" value="<?=$pen_upload;?>" type="file"/></td>
<td style="width: 50px; height: 30px"></td>
</tr>
<tr>
<td style="height: 30px;" colspan="6"><input name="Submit" type="submit" value="submit" /><INPUT TYPE="hidden" NAME="id_edit" VALUE="<?=$pen_id;?>" /></td>
</tr>
</table>
</form>
</body>
</html>
Code request_admin_view_add(PHP)
<style>
body {
background: url('images/bg.jpg') top center ;
background-attachment:fixed;
background-size: 100%;
background-origin: content;
background-repeat: no-repeat;
}
</style>
<?
$id_edit=$_POST[id_edit];
$fname=$_POST[fname];
$lname=$_POST[lname];
$nname=$_POST[nname];
$teldep=$_POST[teldep];
$dep_name=$_POST[dep_name];
$pos_name=$_POST[pos_name];
$pen_name=$_POST[pen_name];
$pen_notes=$_POST[pen_notes];
$pen_admin=$_POST[pen_admin];
$pen_notes_admin=$_POST[pen_notes_admin];
$pen_status=$_POST[pen_status];
$pen_upload=$_POST[pen_upload];
include"connect.php";
mysql_query("SET NAMES UTF8");
$sql="UPDATE pending SET fname='$fname', lname='$lname', nname='$nname', teldep='$teldep', dep_name='$dep_name', pos_name='$pos_name', pen_name='$pen_name', pen_notes='$pen_notes', pen_admin='$pen_admin', pen_notes_admin='$pen_notes_admin', pen_status='$pen_status', pen_upload='$pen_upload' where pen_id='$id_edit'";
$result=mysql_db_query($dbname,$sql);
if($result){
echo"<H3><CENTER><br><br><br><br><br><img src='images/thumbsup.png' width='256px' height='161px'></CENTER></H3>";
echo"<META HTTP-EQUIV=refresh CONTENT=\"1; URL=page_admin.php\">";
}else{
echo"<H3>ERROR:Can not fix</H3>";
}
Mysql_close();
?>
Tag : PHP, Windows
|
|
|
|
|
|
Date :
2015-09-19 10:56:51 |
By :
NuItMaster |
View :
830 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เห็นโค๊ด insert แล้วมันจะ insert เข้าไปยังไงครับ
update ไม่ได้ ก็จะไม่ insert นะครับ
|
|
|
|
|
Date :
2015-09-19 12:14:45 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
insert ข้างล่าง update ได้เลยใช่ไหมครับ
|
|
|
|
|
Date :
2015-09-19 12:22:54 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
insert ก็ insert
update ก็ update
จะ insert ข้างล่าง update ทำไม
ต้องเขียนเงื่อนไขแยกให้ถูก
|
|
|
|
|
Date :
2015-09-19 13:23:42 |
By :
CasanovaKung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ แล้วอัพโหลดไฟล์อ่ะครับ พอดีงงอ่ะครับ
|
|
|
|
|
Date :
2015-09-19 14:34:52 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|