|
|
|
ขอความกรุณาสอบถาม เรื่อง หน้าแก้ไข จะสามารถใช้เงื่อนไขใดเพื่อเก็บค่ารูปภาพเดิมเมื่อไม่ต้องการอัพโหลดภาพใหม่ |
|
|
|
|
|
|
|
ตามโค้ดนี้อะคับ คือว่าผมจะสามารถเช็คเงื่อนไขตรงส่วนไหนบ้าง
เพื่อให้เวลาที่แก้ไขข้อมูลแล้วให้รูปภาพเก่ายังอยู่ในฐานข้อมูล เมื่อไม่ต้องการรอัพโหลดรูปภาพใหม่
Code (PHP)
// ส่วนของการอัพโหลดและอัพเดท//
<?
$pic_boolean = null;
$File_Images= "photo_durable/";
$photo = $_FILES['photo']['name'];
if ($_FILES['photo']['tmp_name'] != "") // ตรวจสอบว่ามีไฟล์ส่งมาหรือไม่
{
if(strchr($_FILES['photo']['name'],".")==".JPG" || strchr($_FILES['photo']['name'],".")==".jpg" || strchr($_FILES['photo']['name'],".")==".GIF" || strchr($_FILES['photo']['name'],".")==".gif")
{
copy($_FILES['photo']['tmp_name'],"$File_Images/$photo"); // Copy File ไว้ที่ Folder File
}else{
echo "ไฟล์ที่ส่งมาไม่ใช่ไฟล์ .Gif และ .Jpg";
}
}
if($_POST["Durable"]=="edit"){ <==ส่วนนี้ต้องเพิ่มเงื่อนไขใดเพิ่มหรือป่าวคับ
$sql="UPDATE asset_Durable SET Dur_Name='".$_POST["Dur_Name"]."',Dur_Serialnumber='".$_POST["Dur_Serialnumber"]."',Store_Id='".$_POST["Store_Id"]."',Durtype_Id='".$_POST["Durtype_Id"]."',Dur_Brand='".$_POST["Dur_Brand"]."',Dur_Model='".$_POST["Dur_Model"]."',Unit_Id='".$_POST["Unit_Id"]."',Dur_Price='".$_POST["Dur_Price"]."',Attainment_Id='".$_POST["Attainment_Id"]."',Bud_Id='".$_POST["Bud_Id"]."',Fis_Id='".$_POST["Fis_Id"]."',Dur_Dateincome='".$_POST["exampleI"]."',Dur_Datewarity='".$_POST["exampleII"]."',Buid='".$_POST["Buid"]."',FRId='".$_POST["FRId"]."',Cid='".$_POST["Cid"]."',img='".$photo."', Dur_Detail='".$_POST["Dur_Detail"]."' WHERE Dur_Id='".$_POST["Dur_Id"]."' ";
//echo $sql;
$conn->Execute($sql);
if($conn-> Affected_Rows())
echo "<h3 class='affected' > * * บันทึกข้อมูลเรียบร้อยแล้ว * * </h3>";
}
}
// ส่วนของการอัพโหลดและอัพเดท//
// ส่วนของการเรียกข้อมูลขึ้นมาโชว์//
<?
}
if($_GET["act"]=="edit"){
$Currsql = "SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'";
echo $sql;
$CRow = $conn->Execute($Currsql);
$Curow = $CRow->FetchRow();
?>
<form id="frmMain" name="frmMain" method="post" action="?" onSubmit="return checkFieldD();" enctype="multipart/form-data">
<input name="Durable" type="hidden" id="Durable" value="edit" />
<input name="Dur_Id" type="hidden" id="Dur_Id" value="<?php echo $Curow['Dur_Id'] ?>" />
<div id="EditAdmin">
<label>ชื่อครุภัณฑ์ : </label>
<input type="text" name="Dur_Name" id="Dur_Name" value="<?php echo $Curow['Dur_Name'] ?>" class="wtxt"/>
<br class="clear" />
<label>Serial Number : </label>
<input name="Dur_Serialnumber" type="text" class="wtxt" id="Dur_Serialnumber" value="<?php echo $Curow['Dur_Serialnumber'] ?>" maxlength="50"/>
<br class="clear" />
<label>ชื่อบริบัท/ร้านค้า : </label>
<select name="Store_Id" class="wtxt" id="Store_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Store_Id = $rows['Store_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Store order by Store_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Store_Id'] == $Store_Id)
{
?>
<option value="<?=$row['Store_Id'];?>" selected="selected">
<?=$row['Store_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Store_Id'];?>" >
<?=$row['Store_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ประเภทครุภัณฑ์ : </label>
<select name="Durtype_Id" class="wtxt" id="Durtype_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Durtype_Id = $rows['Durtype_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Durtype order by Durtype_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Durtype_Id'] == $Durtype_Id)
{
?>
<option value="<?=$row['Durtype_Id'];?>" selected="selected">
<?=$row['Durtype_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Durtype_Id'];?>" >
<?=$row['Durtype_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ยี่ห้อ : </label>
<input type="text" name="Dur_Brand" id="Dur_Brand" value="<?php echo $Curow['Dur_Brand'] ?>" class="wtxt" />
<br class="clear" />
<label>รุ่น : </label>
<input type="text" name="Dur_Model" id="Dur_Model" value="<?php echo $Curow['Dur_Model'] ?>" class="wtxt"/>
<br class="clear" />
<label>หน่วยนับ : </label>
<select name="Unit_Id" class="wtxt" id="Unit_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Unit_Id = $rows['Unit_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Unit order by Unit_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Unit_Id'] == $Unit_Id)
{
?>
<option value="<?=$row['Unit_Id'];?>" selected="selected">
<?=$row['Unit_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Unit_Id'];?>" >
<?=$row['Unit_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ราคา : </label>
<input type="text" name="Dur_Price" id="Dur_Price" value="<?php echo $Curow['Dur_Price'] ?>" class="wtxt" onKeyPress="check_key_number()"/>
<br class="clear" />
<label>วิธีการได้มา : </label>
<select name="Attainment_Id" class="wtxt" id="Attainment_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Attainment_Id = $rows['Attainment_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Attainment order by Attainment_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Attainment_Id'] == $Attainment_Id)
{
?>
<option value="<?=$row['Attainment_Id'];?>" selected="selected">
<?=$row['Attainment_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Attainment_Id'];?>" >
<?=$row['Attainment_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>งบประมาณ : </label>
<select name="Bud_Id" class="wtxt" id="Bud_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Bud_Id = $rows['Bud_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Budget order by Bud_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Bud_Id'] == $Bud_Id)
{
?>
<option value="<?=$row['Bud_Id'];?>" selected="selected">
<?=$row['Bud_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Bud_Id'];?>" >
<?=$row['Bud_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ปีงบประมาณ : </label>
<select name="Fis_Id" class="wtxt" id="Fis_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Fis_Id = $rows['Fis_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Fiscalyear order by Fis_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Fis_Id'] == $Fis_Id)
{
?>
<option value="<?=$row['Fis_Id'];?>" selected="selected">
<?=$row['Fis_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Fis_Id'];?>" >
<?=$row['Fis_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>วัน/เดือน/ปีที่รับเข้า : </label>
<input name="exampleI" type="text" id="exampleI" onkeypress="chek_number();" size="10" maxlength="10" />
<br class="clear" />
<label>วันที่หมดประกัน : </label>
<input name="exampleII" type="text" id="exampleII" onkeypress="chek_number();" size="10" maxlength="10" />
<br class="clear" />
<label>อาคาร : </label>
<select name="Buid" class="wtxt" id="Buid" onchange = "ListFloors(this.value)">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Buid = $rows['Buid']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from Buiding order by Buid asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Buid'] == $Buid)
{
?>
<option value="<?=$row['Buid'];?>" selected="selected">
<?=$row['Buname']?>
</option>
<?
}else{
?>
<option value="<?=$row['Buid'];?>" >
<?=$row['Buname']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ชั้น : </label>
<select name="FRId" class="wtxt" id="FRId" onchange = "ListClass(this.value)">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$FRId = $rows['FRId']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from Floors order by FRId asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['FRId'] == $FRId)
{
?>
<option value="<?=$row['FRId'];?>" selected="selected">
<?=$row['FRName']?>
</option>
<?
}else{
?>
<option value="<?=$row['FRId'];?>" >
<?=$row['FRName']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ห้อง : </label>
<select name="Cid" class="wtxt" id="Cid">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Cid = $rows['Cid']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from Class order by Cid asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Cid'] == $Cid)
{
?>
<option value="<?=$row['Cid'];?>" selected="selected">
<?=$row['Cname']?>
</option>
<?
}else{
?>
<option value="<?=$row['Cid'];?>" >
<?=$row['Cname']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>รายละเอียด : </label>
<textarea name="Dur_Detail" id="Dur_Detail" cols="45" rows="5"><?php echo $Curow['Dur_Detail'] ?></textarea>
<img src="photo_durable/<?php echo $Curow['img']; ?>" width="95" height="80" border="0" /><br class="clear" />
<label>รูปภาพ : </label>
<input name="photo" type="file" id="photo" size="50" /> <==ส่วนนี้ต้องเพิ่มอะไรหรือป่าวคับ
<br class="clear" />
<label><br /> </label>
</br>
<input name="submit" class="wbtn" id="submit" value="บันทึก" type="submit" width="20" />
<a href="EditdataDurable.php" class="button" >
<input type="reset" name="button2" id="button" value="ยกเลิก" width="20" class="wbtn" />
</a></div>
</form>
<?
}?>
// ส่วนของการเรียกข้อมูลขึ้นมาโชว์//
Tag : PHP, Ms SQL Server 2008
|
ประวัติการแก้ไข 2011-01-07 00:47:51 2011-01-07 00:48:47
|
|
|
|
|
Date :
2011-01-07 00:13:41 |
By :
HaKonNan |
View :
795 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปกติเวลาจะแก้ไขส่วนใหญ่ไม่เห็นเค้าแกไขรูปอยู่แล้วน่ะครับ มีแต่ลบทิ้งแล้ว insert เข้าไปใหม่ท่านอื่นว่าไงครับ
|
|
|
|
|
Date :
2011-01-07 08:55:34 |
By :
gogo01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อัพเดตแต่รายละเอียด ไม่ต้องอัพเดทรูปครับ
|
|
|
|
|
Date :
2011-01-07 09:01:24 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ที่ผมเข้าใจนะครับ คือคุณต้องสร้าง ช่องสำหรับเก็บค่าชื่อรูปอีกอันครับแล้วทำการซ่อนไว้ hidden
|
|
|
|
|
Date :
2011-01-07 09:09:12 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
// ส่วนของการอัพโหลดและอัพเดท//
<?
$pic_boolean = null;
$File_Images= "photo_durable/";
$photo = $_FILES['photo']['name'];
if ($_FILES['photo']['tmp_name'] != "") // ตรวจสอบว่ามีไฟล์ส่งมาหรือไม่
{
if(strchr($_FILES['photo']['name'],".")==".JPG" || strchr($_FILES['photo']['name'],".")==".jpg" || strchr($_FILES['photo']['name'],".")==".GIF" || strchr($_FILES['photo']['name'],".")==".gif")
{
copy($_FILES['photo']['tmp_name'],"$File_Images/$photo"); // Copy File ไว้ที่ Folder File
}else{
echo "ไฟล์ที่ส่งมาไม่ใช่ไฟล์ .Gif และ .Jpg";
}
}
<==สร้างส่วนนี้เพิ่มนะครับ หลังจากมีการอัพโหลดเกิดขึ้น และ ก่อนอัพเดทลงฐานข้อมูล
ใช้เงื่อนไขต่อจากข้างบนเลย if or else $image = $_POST['oldpic']; $photo = $image;
if($_POST["Durable"]=="edit"){ <==ส่วนนี้ต้องเพิ่มเงื่อนไขใดเพิ่มหรือป่าวคับ
$sql="UPDATE asset_Durable SET Dur_Name='".$_POST["Dur_Name"]."',Dur_Serialnumber='".$_POST["Dur_Serialnumber"]."',Store_Id='".$_POST["Store_Id"]."',Durtype_Id='".$_POST["Durtype_Id"]."',Dur_Brand='".$_POST["Dur_Brand"]."',Dur_Model='".$_POST["Dur_Model"]."',Unit_Id='".$_POST["Unit_Id"]."',Dur_Price='".$_POST["Dur_Price"]."',Attainment_Id='".$_POST["Attainment_Id"]."',Bud_Id='".$_POST["Bud_Id"]."',Fis_Id='".$_POST["Fis_Id"]."',Dur_Dateincome='".$_POST["exampleI"]."',Dur_Datewarity='".$_POST["exampleII"]."',Buid='".$_POST["Buid"]."',FRId='".$_POST["FRId"]."',Cid='".$_POST["Cid"]."',img='".$photo."', Dur_Detail='".$_POST["Dur_Detail"]."' WHERE Dur_Id='".$_POST["Dur_Id"]."' ";
//echo $sql;
$conn->Execute($sql);
if($conn-> Affected_Rows())
echo "<h3 class='affected' > * * บันทึกข้อมูลเรียบร้อยแล้ว * * </h3>";
}
}
// ส่วนของการอัพโหลดและอัพเดท//
// ส่วนของการเรียกข้อมูลขึ้นมาโชว์//
<?
}
if($_GET["act"]=="edit"){
$Currsql = "SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'";
echo $sql;
$CRow = $conn->Execute($Currsql);
$Curow = $CRow->FetchRow();
?>
<form id="frmMain" name="frmMain" method="post" action="?" onSubmit="return checkFieldD();" enctype="multipart/form-data">
<input name="Durable" type="hidden" id="Durable" value="edit" />
<input name="Dur_Id" type="hidden" id="Dur_Id" value="<?php echo $Curow['Dur_Id'] ?>" />
<div id="EditAdmin">
<label>ชื่อครุภัณฑ์ : </label>
<input type="text" name="Dur_Name" id="Dur_Name" value="<?php echo $Curow['Dur_Name'] ?>" class="wtxt"/>
<br class="clear" />
<label>Serial Number : </label>
<input name="Dur_Serialnumber" type="text" class="wtxt" id="Dur_Serialnumber" value="<?php echo $Curow['Dur_Serialnumber'] ?>" maxlength="50"/>
<br class="clear" />
<label>ชื่อบริบัท/ร้านค้า : </label>
<select name="Store_Id" class="wtxt" id="Store_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Store_Id = $rows['Store_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Store order by Store_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Store_Id'] == $Store_Id)
{
?>
<option value="<?=$row['Store_Id'];?>" selected="selected">
<?=$row['Store_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Store_Id'];?>" >
<?=$row['Store_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ประเภทครุภัณฑ์ : </label>
<select name="Durtype_Id" class="wtxt" id="Durtype_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Durtype_Id = $rows['Durtype_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Durtype order by Durtype_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Durtype_Id'] == $Durtype_Id)
{
?>
<option value="<?=$row['Durtype_Id'];?>" selected="selected">
<?=$row['Durtype_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Durtype_Id'];?>" >
<?=$row['Durtype_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ยี่ห้อ : </label>
<input type="text" name="Dur_Brand" id="Dur_Brand" value="<?php echo $Curow['Dur_Brand'] ?>" class="wtxt" />
<br class="clear" />
<label>รุ่น : </label>
<input type="text" name="Dur_Model" id="Dur_Model" value="<?php echo $Curow['Dur_Model'] ?>" class="wtxt"/>
<br class="clear" />
<label>หน่วยนับ : </label>
<select name="Unit_Id" class="wtxt" id="Unit_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Unit_Id = $rows['Unit_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Unit order by Unit_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Unit_Id'] == $Unit_Id)
{
?>
<option value="<?=$row['Unit_Id'];?>" selected="selected">
<?=$row['Unit_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Unit_Id'];?>" >
<?=$row['Unit_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ราคา : </label>
<input type="text" name="Dur_Price" id="Dur_Price" value="<?php echo $Curow['Dur_Price'] ?>" class="wtxt" onKeyPress="check_key_number()"/>
<br class="clear" />
<label>วิธีการได้มา : </label>
<select name="Attainment_Id" class="wtxt" id="Attainment_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Attainment_Id = $rows['Attainment_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Attainment order by Attainment_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Attainment_Id'] == $Attainment_Id)
{
?>
<option value="<?=$row['Attainment_Id'];?>" selected="selected">
<?=$row['Attainment_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Attainment_Id'];?>" >
<?=$row['Attainment_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>งบประมาณ : </label>
<select name="Bud_Id" class="wtxt" id="Bud_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Bud_Id = $rows['Bud_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Budget order by Bud_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Bud_Id'] == $Bud_Id)
{
?>
<option value="<?=$row['Bud_Id'];?>" selected="selected">
<?=$row['Bud_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Bud_Id'];?>" >
<?=$row['Bud_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ปีงบประมาณ : </label>
<select name="Fis_Id" class="wtxt" id="Fis_Id">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Fis_Id = $rows['Fis_Id']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from asset_Fiscalyear order by Fis_Id asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Fis_Id'] == $Fis_Id)
{
?>
<option value="<?=$row['Fis_Id'];?>" selected="selected">
<?=$row['Fis_Name']?>
</option>
<?
}else{
?>
<option value="<?=$row['Fis_Id'];?>" >
<?=$row['Fis_Name']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>วัน/เดือน/ปีที่รับเข้า : </label>
<input name="exampleI" type="text" id="exampleI" onkeypress="chek_number();" size="10" maxlength="10" />
<br class="clear" />
<label>วันที่หมดประกัน : </label>
<input name="exampleII" type="text" id="exampleII" onkeypress="chek_number();" size="10" maxlength="10" />
<br class="clear" />
<label>อาคาร : </label>
<select name="Buid" class="wtxt" id="Buid" onchange = "ListFloors(this.value)">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Buid = $rows['Buid']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from Buiding order by Buid asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Buid'] == $Buid)
{
?>
<option value="<?=$row['Buid'];?>" selected="selected">
<?=$row['Buname']?>
</option>
<?
}else{
?>
<option value="<?=$row['Buid'];?>" >
<?=$row['Buname']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ชั้น : </label>
<select name="FRId" class="wtxt" id="FRId" onchange = "ListClass(this.value)">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$FRId = $rows['FRId']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from Floors order by FRId asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['FRId'] == $FRId)
{
?>
<option value="<?=$row['FRId'];?>" selected="selected">
<?=$row['FRName']?>
</option>
<?
}else{
?>
<option value="<?=$row['FRId'];?>" >
<?=$row['FRName']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>ห้อง : </label>
<select name="Cid" class="wtxt" id="Cid">
<option value="0" selected="selected">-----------------------เลือก--------------------</option>
<?
$sqldetail ="SELECT * FROM asset_Durable WHERE Dur_Id='".$_GET["Dur_Id"]."'"; //ข้อมูลจากตารางหลัก
$rs = mssql_query($sqldetail);
$rows = mssql_fetch_array($rs);
$Cid = $rows['Cid']; //ฟิลที่นำมาโชว์ก่อนการแก้ไขข้อมูล
?>
<?
$sql = "SELECT * from Class order by Cid asc";
$result = mssql_query($sql);
while($row=mssql_fetch_assoc($result)){
if($row['Cid'] == $Cid)
{
?>
<option value="<?=$row['Cid'];?>" selected="selected">
<?=$row['Cname']?>
</option>
<?
}else{
?>
<option value="<?=$row['Cid'];?>" >
<?=$row['Cname']?>
</option>
<?
}
}
?>
</select>
<br class="clear" />
<label>รายละเอียด : </label>
<textarea name="Dur_Detail" id="Dur_Detail" cols="45" rows="5"><?php echo $Curow['Dur_Detail'] ?></textarea>
<img src="photo_durable/<?php echo $Curow['img']; ?>" width="95" height="80" border="0" /><br class="clear" />
<label>รูปภาพ : </label>
<input name="photo" type="file" id="photo" size="50" /><input type="text" name="oldpic" value="<?=$row['ชื่อรูปภาพ']?>"> <==ส่วนนี้ต้องเพิ่มอะไรหรือป่าวคับ
<br class="clear" />
<label><br /> </label>
</br>
<input name="submit" class="wbtn" id="submit" value="บันทึก" type="submit" width="20" />
<a href="EditdataDurable.php" class="button" >
<input type="reset" name="button2" id="button" value="ยกเลิก" width="20" class="wbtn" />
</a></div>
</form>
<?
}?>
// ส่วนของการเรียกข้อมูลขึ้นมาโชว์//
|
|
|
|
|
Date :
2011-01-07 09:15:34 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|