|
|
|
ขอสอบถามหน่อยครับ มือไง ยิ่งทำยิ่ง งง ช่วยแนะนำหน่อยครับ |
|
|
|
|
|
|
|
ตอบข้อ2 ถ้าตั้งเป็นออโต้แล้ว พอเราลบข้อมูล แล้วเพิ่มเข้าไปใหม่ รหัสมันจะรันต่อจากของเก่าที่เราลบไป
ถ้าจะให้มันรัน1,2,3,4,... ใหม่ ต้อง select id+1 as new_id from table order by id desc limit 1 แล้วค่อย insert ไป
|
|
|
|
|
Date :
2011-04-18 13:57:19 |
By :
avsqlz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ ครับ
บันทึก ครั้งที่ 1 จะโชว์ ข้อมูล หน้า ครั้งที่ 1
พอบันทึก ครั้ง ที่ 2 บันทึกได้ แต่ มานโชว์ ข้อมูล ครั้งที่ 1
ทำไงให้มานอ่าน โชว์ ข้อมูล ครั้งที่ 2 อะครับ
|
ประวัติการแก้ไข 2011-04-19 08:31:19
|
|
|
|
Date :
2011-04-19 08:18:59 |
By :
sofar01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ้อ ผิดๆ ครับ
เอาใหม่ นะครับ
บันทึก ครั้งที่ 1 จะโชว์ ข้อมูล หน้า ครั้งที่ 1
พอบันทึก ครั้ง ที่ 2 บันทึกได้ แต่ มานโชว์ ข้อมูล ครั้งที่ 1
ทำไงให้มานอ่าน โชว์ ข้อมูล ครั้งที่ 2 อะครับ
|
|
|
|
|
Date :
2011-04-19 08:30:57 |
By :
sofar01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเอาโค้ดมาลงดูนะว่าผิดตรงไหนถ้ามาถามอย่างนี้หาคนตอบอยากเพราะไม่รู้ว่าจะเริ่มตรงไหน
ถ้าเอาโค้ดมานะว่าผิดตรงไหนนะจะมีคนช่วยดูมากกว่านะจ้า
สู้ๆๆ
|
|
|
|
|
Date :
2011-04-19 08:44:19 |
By :
nongking1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โค๊ดยาวมากครับ นี้คือโค๊ดหน้า แรกที่ให้ผู้ใช้กรอกข้อมูลและบันทึกลงฐานข้อมูล
Code
<!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=windows-874" />
<title>ขอใช้ยานพาหนะ</title>
<?php
require_once('.../Connections/connlogistic.php');
include('../check.php');
if(isset($HTTP_POST_VARS["Submit"]))
{
// ตรวจสอบในฐานข้อมูลว่าเลขที่ เหมือนกันใหม
mysql_select_db($database_connlogistic, $connlogistic);
mysql_query("SET NAMES TIS620");
$query = "SELECT * FROM bio_noncon WHERE ID_add like '$ID_add'";
$rsCheck = mysql_query($query, $connlogistic) or die(mysql_error());
$total = mysql_num_rows($rsCheck);
if($total<>0)
{
msg("เลขที่หนังสือซ้ำครับ กรุณาแก้ไขด้วยครับ");
}
$insertSQL = "INSERT INTO bio_noncon (ID_add,ID_position,dd,mm,yy,Biono_1,Biono_2,Biono_3,Biono_4,Biono_5,Biono_6,Biono_7,
Biono_8,Biono_9,Biono_10,Biono_11,Biono_12,Biono_13,Biono_14,Biono_15,Biono_16,Biono_17,Biono_18,Biono_19,Biono_20,Biono_21,
Biono_22,Biono_23,Biono_24,Biono_25,Biono_26,Biono_27,Biono_28,dd1,mm1,yy1,Biono_29,dd2,mm2,yy2,Biono_30,Biono_31,
Biono_32,Biono_33,Biono_34)
VALUES ('$ID_add','$ID_position','$dd','$mm','$yy','$Biono_1','$Biono_2','$Biono_3','$Biono_4','$Biono_5','$Biono_6','$Biono_7',
'$Biono_8','$Biono_9','$Biono_10','$Biono_11','$Biono_12','$Biono_13','$Biono_14','$Biono_15','$Biono_16','$Biono_17','$Biono_18',
'$Biono_19','$Biono_20','$Biono_21','$Biono_22','$Biono_23','$Biono_24','$Biono_25','$Biono_26','$Biono_27','$Biono_28',
'$dd1','$mm1','$yy1','$Biono_29','$dd2','$mm2','$yy2','$Biono_30','$Biono_31','$Biono_32','$Biono_33','$Biono_34')";
mysql_query($insertSQL, $connlogistic) or die(mysql_error());
{
echo("<meta http-equiv='refresh' content='0;URL=p1_menu_confirm.php?username=$username'>");
}
}
?>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table align="center" width="1441" height="1839" border="0" cellpadding="1">
<tr>
<td width="1451" height="1835"><table width="1441" height="1801" border="0" cellpadding="1">
<tr>
<td height="50" colspan="5"><div align="center"><font face="TH SarabunPSK" size="+3">
<div align="center">ใบขอใช้ยานพาหนะ</div>
</div></td>
<td width="163" height="50" colspan="5"> </td>
</tr>
<tr>
<td height="45" colspan="2"><font face="TH SarabunPSK" size="+3">ที่
<input name="ID_add" type="text" style="border:0px;border-bottom:1px #000 dotted; font-family:'TH SarabunPSK';font-size:32px;"size="15" maxlength="18" id="ID_add"/></td>
<td height="45" colspan="4"><font face="TH SarabunPSK" size="+3">ส่วนราชการ
<input name="ID_position" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="20" maxlength="25" id="ID_position"/> </tr>
<tr>
<td height="45" colspan="2"> </td>
<td height="45" colspan="3"><font face="TH SarabunPSK" size="+3">วันที่
<input name="dd" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="2" maxlength="3" id="input6"/>
เดือน
<input name="mm" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="3" maxlength="10" id="mm"/>
พ.ศ.
<input name="yy" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="3" maxlength="10" id="input6"/></td></tr>
<tr>
<td height="45" colspan="10"><font face="TH SarabunPSK" size="+3">เรียน
<input name="Biono_1" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="13" maxlength="18" id="Biono_1"/></td>
</tr>
<tr>
<td height="45" colspan="9"> <font face="TH SarabunPSK" size="+3">ขออนุญาตุใช้รถยนต์ประเภท</span>
<input name="Biono_2" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="30" maxlength="37" id="Biono_2"/>
ของ<input name="Biono_3" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="27" maxlength="35" id="Biono_3"/></td></tr>
<tr>
<td height="45" colspan="9"><font face="TH SarabunPSK" size="+3">จำนวน
<input name="Biono_4" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="10" maxlength="12" id="Biono_4"/>
คัน เพื่อใช้ราชการ<input name="Biono_5" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="55" maxlength="62" id="Biono_5"/></td></tr>
<tr>
<td height="45" colspan="9"><input name="Biono_6" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="87" maxlength="98" id="Biono_6"/></td>
</tr>
<tr>
<td height="45" colspan="9"><input name="Biono_7" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="87" maxlength="98" id="Biono_7"/></td>
</tr>
<tr>
<td height="45" colspan="8"> <font face="TH SarabunPSK" size="+3">จาก<input name="Biono_8" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="38" maxlength="45" id="input"/>
ถึง<input name="Biono_9" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="37" maxlength="44" id="Biono_9"/></td>
</tr>
<tr>
<td height="45" colspan="8"> <font face="TH SarabunPSK" size="+3">จาก<input name="Biono_8" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="38" maxlength="45" id="input"/>
ถึง<input name="Biono_9" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="37" maxlength="44" id="Biono_9"/></td>
</tr>
<tr>
<td height="45" colspan="8"> <font face="TH SarabunPSK" size="+3">จาก<input name="Biono_12" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="38" maxlength="45" id="Biono_12"/>
ถึง<input name="Biono_13" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="37" maxlength="44" id="Biono_13"/></td>
</tr>
<tr>
<td height="45" colspan="8"> <font face="TH SarabunPSK" size="+3">จาก<input name="Biono_14" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="38" maxlength="45" id="Biono_14"/>
ถึง<input name="Biono_15" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="37" maxlength="44" id="Biono_15"/></td>
</tr>
<tr>
<td height="45" colspan="8"> <font face="TH SarabunPSK" size="+3">จาก<input name="Biono_16" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="38" maxlength="45" id="Biono_16"/>
ถึง<input name="Biono_17" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="37" maxlength="44" id="Biono_17"/></td>
</tr>
<tr>
<td height="45" colspan="8"> <font face="TH SarabunPSK" size="+3">จาก<input name="Biono_18" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="38" maxlength="45" id="Biono_18"/>
ถึง<input name="Biono_19" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="37" maxlength="44" id="Biono_19"/></td>
</tr>
<tr>
<td height="45" colspan="8"><font face="TH SarabunPSK" size="+3">รวมระยะทางไป-กลับประมาณ
<input name="Biono_20" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="20" maxlength="21" id="Biono_20"/>
กม. มีผู้โดยสาร
<input name="Biono_21" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="25" maxlength="27" id="Biono_21"/>
คน</td>
</tr>
<tr>
<td height="45" colspan="8"><font face="TH SarabunPSK" size="+3">มีสิ่งของบรรทุกหนักประมาณ
<input name="Biono_22" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="20" maxlength="24" id="Biono_22"/>
กก.,ปอนด์ขนาด(กว้าง*ยาว*สูง)
<input name="Biono_23" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="15" maxlength="20" id="Biono_23"/>
ฟุต</td>
</tr>
<tr>
<td height="45" colspan="8"><font face="TH SarabunPSK" size="+3">ขอใช้ ชพ.งบ.
<input name="Biono_24" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="30" maxlength="37" id="Biono_24"/>
โดยให้
<input name="Biono_25" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="36" maxlength="43" id="Biono_25"/></td>
</tr>
<tr>
<td height="45" colspan="9"><font face="TH SarabunPSK" size="+3">ตำแหน่ง<input name="Biono_26" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="20" maxlength="24" id="Biono_26"/>
เป็นผู้ควบคุมรถ ให้นำรถไปรับที่
<input name="Biono_27" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="33" maxlength="40" id="Biono_27"/></td>
</tr>
<tr>
<td height="45" colspan="9"><font face="TH SarabunPSK" size="+3">ใกล้กับ
<input name="Biono_28" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="40" maxlength="47" id="Biono_28"/>
ในวันที่<input name="dd1" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="3" maxlength="4" id="dd1"/>
เดือน<input name="mm1" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="5" maxlength="7" id="mm1"/>
พ.ศ.<input name="yy1" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="5" maxlength="8" id="yy1"/></td>
</tr>
<tr>
<td height="45" colspan="9"><font face="TH SarabunPSK" size="+3">เวลา
<input name="Biono_29" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="10" maxlength="12" id="Biono_29"/>
จะกลับในวันที่<input name="dd2" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="5" maxlength="10" id="dd2"/>
เดือน<input name="mm2" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="10" maxlength="12" id="mm2"/>
พ.ศ.<input name="yy2" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="10" maxlength="15" id="yy2"/>
เวลา<input name="Biono_30" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="10" maxlength="12" id="Biono_30"/></td>
</tr>
<tr>
<td height="45" colspan="9"><font face="TH SarabunPSK" size="+3">ได้แนบบัตรจ่าย ชพ.ชนิด
<input name="Biono_31" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="20" maxlength="25" id="Biono_31"/>
มาด้วยแล้ว
<input name="Biono_32" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="5" maxlength="8" id="Biono_32"/>
ฉบับ จำนวน
<input name="Biono_33" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="5" maxlength="8" id="Biono_33"/>
ลิตร</td>
</tr>
<tr>
<td height="45" colspan="9"><font face="TH SarabunPSK" size="+3">ได้ติดต่อประสานงานกับหน่วยจัดรถยนต์แล้ว
<input name="Biono_34" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="55" maxlength="64" id="Biono_34"/></td>
</tr>
<tr>
<td width="431" height="40"> </td>
<td height="40" colspan="4"><font face="TH SarabunPSK" size="+3">(ลงชื่อ)
<input name="input5" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="25" maxlength="35" id="input2"/> <font face="TH SarabunPSK" size="+3"></td>
</tr>
<tr>
<td width="431" height="40"> </td>
<td height="40" colspan="4"><font face="TH SarabunPSK" size="+3">(ตำแหน่ง)<input name="input6" type="text" style="border:0px;border-bottom:1px #000 dotted;font-family:'TH SarabunPSK';font-size:32px;" size="25" maxlength="27" id="input5"/></td>
</tr>
<tr>
<td height="40"> </td>
<td height="40" colspan="2"><input type="submit" name="Submit" id="Submit" value="บันทึกข้อมูล" />
<input type="reset" name="Reset" id="button" value="ลบข้อมูล" />
<input type="submit" name="Submitmanu" id="Submitmanu" value="กลับหน้าหลัก" /></td>
<td width="356" height="40"> </td>
</tr>
</table></td>
</tr>
</table>
</form>
</body>
</html>
|
|
|
|
|
Date :
2011-04-19 08:52:05 |
By :
sofar01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่รู้นะ ถ้าเป็นผม
Code (PHP)
<?php
require_once('.../Connections/connlogistic.php');
include('../check.php');
if(isset($HTTP_POST_VARS["Submit"]))
{
// ตรวจสอบในฐานข้อมูลว่าเลขที่ เหมือนกันใหม
mysql_select_db($database_connlogistic, $connlogistic);
mysql_query("SET NAMES TIS620");
$query = "SELECT * FROM bio_noncon WHERE ID_add like '$ID_add'";
$rsCheck = mysql_query($query, $connlogistic) or die(mysql_error());
$total = mysql_num_rows($rsCheck);
if($total<>0)
{
msg("เลขที่หนังสือซ้ำครับ กรุณาแก้ไขด้วยครับ");
}
$insertSQL = "INSERT INTO bio_noncon (ID_add,ID_position,dd,mm,yy,Biono_1,Biono_2,Biono_3,Biono_4,Biono_5,Biono_6,Biono_7,
Biono_8,Biono_9,Biono_10,Biono_11,Biono_12,Biono_13,Biono_14,Biono_15,Biono_16,Biono_17,Biono_18,Biono_19,Biono_20,Biono_21,
Biono_22,Biono_23,Biono_24,Biono_25,Biono_26,Biono_27,Biono_28,dd1,mm1,yy1,Biono_29,dd2,mm2,yy2,Biono_30,Biono_31,
Biono_32,Biono_33,Biono_34)
VALUES ('$ID_add','$ID_position','$dd','$mm','$yy','$Biono_1','$Biono_2','$Biono_3','$Biono_4','$Biono_5','$Biono_6','$Biono_7',
'$Biono_8','$Biono_9','$Biono_10','$Biono_11','$Biono_12','$Biono_13','$Biono_14','$Biono_15','$Biono_16','$Biono_17','$Biono_18',
'$Biono_19','$Biono_20','$Biono_21','$Biono_22','$Biono_23','$Biono_24','$Biono_25','$Biono_26','$Biono_27','$Biono_28',
'$dd1','$mm1','$yy1','$Biono_29','$dd2','$mm2','$yy2','$Biono_30','$Biono_31','$Biono_32','$Biono_33','$Biono_34')";
mysql_query($insertSQL, $connlogistic) or die(mysql_error());
{
echo("<meta http-equiv='refresh' content='0;URL=p1_menu_confirm.php?username=$username'>&id_add=$ID_add"); // ตรงนี้ ให้ใส่ Id ไปด้วยเผื่อเรียก
}
}
?>
แล้ว หน้า แสดง
Code (PHP)
$query_rsBiono = "SELECT * FROM bio_noncon where ID_add='$_GET[id_add]'"; // กำหนด ตัวเรียก
$rsBiono = mysql_query($query_rsBiono, $connlogistic) or die(mysql_error());
$row_rsBiono = mysql_fetch_assoc($rsBiono);
$totalRows_rsBiono = mysql_num_rows($rsBiono);
|
|
|
|
|
Date :
2011-04-19 10:56:46 |
By :
compeng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งง ตรงหน้าแสดงครับ ผม ผมใช้ ดรีมในการ เขียน ซึ้ง ดรีม จะมี เครื่องมือ
bindings >>Recordset(query) ครับ จึงไม่ต้องเขียนโค๊ดเอง แต่ที่ คุณ แสดงไงดูผมก็เลย งง นะครับ
ช่วยอธิบายเพิ่มเติ่มอีกนิด ครับ
ขอบคุณมากครับ
|
ประวัติการแก้ไข 2011-04-19 14:08:58
|
|
|
|
Date :
2011-04-19 14:08:08 |
By :
sofar01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
echo("<meta http-equiv='refresh' content='0;URL=p1_menu_confirm.php?username=$username&id_add=$ID_add'>");
// บรรทัดนี้ เป็นคำสั่ง ให้รีหน้า p1_menu_confirm.php มาแสดง และ กำหนดค่า username=$username ที่คุณได้ตั้งไว้
// ผมจึงเพิ่มไปอีกอย่าง หนึ่งคือ &id_add=$ID_add โดยกำหนด ค่า id_add มาด้วยโดยค่านี้ คือค่าที่ได้ทำการ เพิ่มข้อมูลแล้ว
Code (PHP)
$query_rsBiono = "SELECT * FROM bio_noncon where ID_add='$_GET[id_add]'";
// ส่วนหน้าแสดง ก็ให้แสดง ข้อมูลที่เพิ่งนำเข้าไปใช่ไหมครับ มันก็จะดึงข้อมูลออกมาตาม ID_add
|
|
|
|
|
Date :
2011-04-19 14:20:18 |
By :
compeng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ ที่สละเวลา มาให้คำแนะนำ ครับ
|
|
|
|
|
Date :
2011-04-19 14:31:48 |
By :
sofar01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|