|
|
|
ช่วยโปรแกรม ตัดสต็อกเก็บค่าเป็น id อยากให้มันเก็บเป็น nameคะ |
|
|
|
|
|
|
|
ถ้าเปลี่ยนจากตัวแปร dura_id เป็ฯ dura_name มันเ่อ่อเร่อ ไม่ลบค่าออก
Code (PHP)
<?PHP if( $_GET['action'] == "update") {
$num= $_POST[num];
$dura_id= $_POST[dura_id];
$dura_name= $_POST[dura_name];
$dura_unit = $_POST[dura_unit];
$dura_num = $_POST[dura_num];
$dura = $_POST[dura];
$q_id= $_POST[q_id];
$q_name= $_POST[q_name];
$q_dura = $_POST[q_dura];
$q_num= $_POST[q_num];
if( ($num =="")) { //ตรวจสอบการป้อนข้อมูล
$msg2 = "ไม่สามารถเบิกได้เนื่องจาก กรอกข้อมูลไม่ครบ";
echo "<script langauge=\"javascript\">alert(\"".$msg2."\");</script>";
} else {
$sql ="INSERT INTO quest (q_id,q_name,q_dura,q_num,q_date)
VALUES ('$q_id','$user','$dura','$num','$e_date')";
$result = mysql_db_query($db,$sql);
if($result){
echo "<BR><BR><CENTER></CENTER>";
//echo "<meta http-equiv=refresh content=0;URL=chk_re2.php>";
}else{
echo "<BR><BR><CENTER>ไม่สามารถบันทึกข้อมูลได้เนื่องจากเกิดความผิดพลาดในการบันทึกข้อมูล";
//echo "<meta http-equiv=refresh content=1;URL=u_request3.php>";
}
}
mysql_close();
include("connect.inc.php");
$objDB = mysql_select_db("$db");
$strSQL2= "select dura_num from passadu_2554 where dura_id = $_POST[dura]";
$objQuery2 = mysql_query($strSQL2) or die ("Error Query [".$strSQL2."]");
$num_rows2=mysql_num_rows($objQuery2);
while($objResult2 = mysql_fetch_array($objQuery2)){
$oldnum = $objResult2["dura_num"];}
//echo $_POST[num]; echo $oldnum;
if($_POST[num] >$oldnum){
$msg = "ไม่สามารถเบิกได้จำนวนเกินที่มีอยู่";
echo "<script langauge=\"javascript\">alert(\"".$msg."\");</script>";
}else{
$sql = "UPDATE passadu_2554 SET dura_num =dura_num - '$_POST[num]' WHERE dura_id = '$_POST[dura]'";
//echo $sql;
$result = mysql_db_query($db,$sql);
if($result) {
echo "<center><h3>เรียบร้อยแล้ว</h3><br>";
echo "<meta http-equiv=refresh content=1;URL=pay4.php>";
}else{
echo "<center><h3>ไม่สามารถแก้ไขข้อมูลได้เนื่องจากเกิดความผิดพลาดในการแก้ไขข้อมูล</h3>";
//echo "<meta http-equiv=refresh content=1;URL=show_passadu2.php>";
}
mysql_close();
}
}?>
<form name="frmMain" action="pay4.php" method="post">
ประเภท
<select name="type" id="type">
<option value="เลือกประเภท">เลือกประเภท</option>
<?
$strSQL = "SELECT * FROM type ORDER BY type_id ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
while($objResult = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResult["type_name"];?>">
<?=$objResult["type_name"];?>
</option>
<?
}
?>
</select>
<input type="submit" name="button" id="button" value="ตกลง"/>
</form>
<form name="frmMain" action="pay4.php?action=update" method="post">
<label></label>
วัสดุ
<? //echo $type ?>
<select name="dura" id="dura">
<?
$strSQL = "SELECT * FROM passadu_2554 where type_name = '$_POST[type]'";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
while($objResult1 = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResult1["dura_id"];?>" selected="selected">
<?=$objResult1["dura_name"];?>
_____จำนวนคงเหลือ____
<?=$objResult1["dura_num"];?>_<?=$objResult1["dura_unit"];?>
</option>
<?
}
?>
</select>
วัสดุ
จำนวนเบิก</span>
<input name="num" type="text" style="width:30"/>
<td><input name="e_date" type="hidden" id="time" value= <?php
echo date('d/m/Y',strtotime("now"));
?> </td>
<input type="submit" name="button2" id="button2" value="เบิก" />
</label>
</form>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2011-09-18 15:44:09 |
By :
หน่อย |
View :
1032 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลบค่าอะไรครับ ไม่เห็นมี delete อธิบายใหม่ครับ งงดีแท้
|
|
|
|
|
Date :
2011-09-18 22:12:39 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรง นี้<select name="dura" id="dura"> ค่าที่เอาเป็นก็คือ dura_id
เพื่อเอาไปตรวจสอบ เอาไป where ซึ่งไม่ได้คะ
หนูต้องการให้ dura_name ไปเก็บ พอหนูเปลี่ยนตรง where มัน error query คะ
|
|
|
|
|
Date :
2011-09-19 12:38:49 |
By :
หน่อย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<option value="<?=$objResult1["dura_id"];?>" selected="selected">
<?=$objResult1["dura_name"];?>
_____จำนวนคงเหลือ____
<?=$objResult1["dura_num"];?>_<?=$objResult1["dura_unit"];?>
</option>
ตรงนี้หรอครับ ตกลงจะทำอะไรยังไงครับ งง ครับเลยไม่ตอบต่อ ไม่อยากเดา
|
|
|
|
|
Date :
2011-09-20 18:18:42 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|