|
|
|
รบกวนสอบถามเรื่อง การแก้ไขไฟล์อัพโหลด ไฟล์ใหม่มาแทนที่ไฟล์เก่าค่ะ |
|
|
|
|
|
|
|
แบบฟอร์ม
<!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=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?php
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("project");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$strSQL = "SELECT * FROM tlo WHERE tlo_noreq = '".$_GET["tlo_noreq"]."' ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$objResult = mysql_fetch_array($objQuery);
?>
<form name="form1" method="post" action="update1.php?tlo_noreq=<?php echo $_GET["tlo_noreq"];?>" enctype="multipart/form-data">
<table width="75%" height="141" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<th height="35" colspan="2" align="left" scope="col">ข้อมูลส่วนที่ 1</th>
</tr>
<tr>
<td>เลขที่คำขอ :
<input name="tlo_noreq" type="text" id="tlo_noreq" value="<?php echo $objResult['tlo_noreq']; ?>" /></td>
<td>วันที่ขอ :
<input name="tlo_date_req" type="text" id="tlo_date_req" value="<?php echo $objResult['tlo_date_req']; ?>" /></td>
</tr>
<tr>
<td>เลขที่สิทธิบัตร :
<input name="tlo_id" type="text" id="tlo_id" value="<?php echo $objResult['tlo_id']; ?>" /></td>
<td>วันที่จดทะเบียน :
<input name="tlo_date" type="text" id="tlo_date" value="<?php echo $objResult['tlo_date']; ?>" /></td>
</tr>
</table>
<table width="100%" border="0">
<tr>
<th scope="col"> </th>
</tr>
</table>
<table width="75%" height="421" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<th colspan="3" align="left" scope="col">ข้อมูลส่วนที่ 2</th>
</tr>
<tr>
<td colspan="2">ผู้ขอจดทะเบียนสิทธิบัตร :
<input name="tlo_namereq" type="text" id="tlo_namereq" value="<?php echo $objResult['tlo_namereq']; ?>" /></td>
</tr>
<tr>
<td colspan="1">คณะ :
<?php
mysql_connect("localhost","root","123456")or die(mysql_error());
mysql_select_db("project") or die(mysql_error());
mysql_query("SET NAMES UTF8"); //Extension By DwThai.Com
$query = "SELECT * FROM `faculty` ORDER BY `fac_id` ";
$result = mysql_query($query) or die(mysql_error()."[".$query."]");
$optSelected = $objResult['fac_id']; #ค่าที่เราเก็บไว้ตอนเพิ่มข้อมูลเข้าไปในครั้งก่อน
?>
<select name="fac_id" id="fac_id">
<option value="0">กรุณาเลือกคณะ</option>
<?php
while ($rs = mysql_fetch_array($result))
{
$optActive = ($rs['fac_id'] == $optSelected) ? 'selected' : '';
?>
<option value="<?PHP echo $rs['fac_id'];?>" <?PHP echo $optActive; ?>><?PHP echo $rs['fac_name'];?></option>
<?php
}
?>
</select>
<td> </td>
</tr>
<tr>
<td colspan="2">ผู้ประดิษฐ์/ออกแบบ :
<input name="tlo_inventor" type="text" id="tlo_inventor" value="<?php echo $objResult['tlo_inventor']; ?>" /></td>
</tr>
<tr>
<td colspan="2">ชื่อผลิตภัณฑ์/สิ่งประดิษฐ์ :
<input name="tlo_name" type="text" id="tlo_name" value="<?php echo $objResult['tlo_name']; ?>" /></td>
</tr>
<tr>
<td colspan="2">ประเภทสิทธิบัตร : <?php
mysql_connect("("localhost","root","123456")) or die(mysql_error());
mysql_select_db("project") or die(mysql_error());
mysql_query("SET NAMES UTF8"); //Extension By DwThai.Com
$query = "SELECT * FROM `tlo_type` ORDER BY `type_id` ";
$result = mysql_query($query) or die(mysql_error()."[".$query."]");
$optSelected = $objResult['type_id']; #ค่าที่เราเก็บไว้ตอนเพิ่มข้อมูลเข้าไปในครั้งก่อน
?>
<select name="type_id" id="type_id">
<option value="0">กรุณาเลือกประเภท</option>
<?php
while ($rs = mysql_fetch_array($result))
{
$optActive = ($rs['type_id'] == $optSelected) ? 'selected' : '';
?>
<option value="<?PHP echo $rs['type_id'];?>" <?PHP echo $optActive; ?>><?PHP echo $rs['type_name'];?></option>
<?php
}
?>
</select>
</td>
</tr>
<tr>
<td>สถานะสุดท้าย :
<?php
mysql_connect("localhost","root","123456") or die(mysql_error());
mysql_select_db("project") or die(mysql_error());
mysql_query("SET NAMES UTF8"); //Extension By DwThai.Com
$query = "SELECT * FROM `tlo_status` ORDER BY `status_id` ";
$result = mysql_query($query) or die(mysql_error()."[".$query."]");
$optSelected = $objResult['status_id']; #ค่าที่เราเก็บไว้ตอนเพิ่มข้อมูลเข้าไปในครั้งก่อน
?>
<select name="status_id" id="status_id">
<option value="0">กรุณาเลือกสถานะ</option>
<?php
while ($rs = mysql_fetch_array($result))
{
$optActive = ($rs['status_id'] == $optSelected) ? 'selected' : '';
?>
<option value="<?PHP echo $rs['status_id'];?>" <?PHP echo $optActive; ?>><?PHP echo $rs['status_name'];?></option>
<?php
}
?>
</select></td>
<td>วันที่ตามสถานะ :
<input name="date_status" type="text" id="date_status" value="<?php echo $objResult['date_status']; ?>" readonly="readonly" /></td>
</tr>
<tr>
<td width="46%"><p>บทสรุปการประดิษฐ์ Read File : </p>
<p>
<textarea name="tlo_conclu" id="tlo_conclu" style="height:150px; width:350px;" ><?php echo $objResult['tlo_conclu']; ?></textarea>
</p></td>
<td width="38%"><p>ข้อถือสิทธิ์ : </p>
<p>
<textarea name="tlo_detai" id="tlo_detai" style="height:150px; width:350px;" ><?php echo $objResult['tlo_detail']; ?></textarea>
</p></td>
</tr>
</table>
<table width="100%" border="0">
<tr>
<th scope="col"> </th>
</tr>
</table>
<table width="75%" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<th height="33" colspan="3" align="left" scope="col">อัพโหลดเอกสาร</th>
</tr>
<tr>
<th height="41" scope="col">เอกสารคำขอ</th>
<th scope="col"><input type="file" name="fileUpload[]2" id="fileUpload[]2" /></th>
<th scope="col"><?php echo $objResult['filUpload']; ?></th>
</tr>
<tr>
<th height="41" scope="col">เอกสารแก้ไขครั้งที่ 1</th>
<th scope="col"><input type="file" name="fileUpload[]3" id="fileUpload[]3" /></th>
<th scope="col"><?php echo $objResult['filUpload1']; ?></th>
</tr>
<tr>
<th height="41" scope="col">เอกสารแก้ไขครั้งที่ 2</th>
<th scope="col"><input type="file" name="fileUpload[]4" id="fileUpload[]4" /></th>
<th scope="col"><?php echo $objResult['filUpload2']; ?></th>
</tr>
<tr>
<th height="41" scope="col">เอกสารแก้ไขครั้งที่ 3</th>
<th scope="col"><input type="file" name="fileUpload[]5" id="fileUpload[]5" /></th>
<th scope="col"><?php echo $objResult['filUpload3']; ?></th>
</tr>
<tr>
<th height="41" scope="col">หนังสือสำคัญ : </th>
<th scope="col"><input type="file" name="fileUpload[]" id="fileUpload[]" /></th>
<th scope="col"><?php echo $objResult['filUpload4']; ?></th>
</tr>
</table>
<input type="hidden" name="hdnOldFile" value="<?php echo $objResult["filUpload"];?>">
<input type="hidden" name="hdnOldFile" value="<?php echo $objResult["filUpload1"];?>">
<input type="hidden" name="hdnOldFile" value="<?php echo $objResult["filUpload2"];?>">
<input type="hidden" name="hdnOldFile" value="<?php echo $objResult["filUpload3"];?>">
<input type="hidden" name="hdnOldFile" value="<?php echo $objResult["filUpload4"];?>">
<p>
<center><input type="submit" name="button" id="button" value="Submit" /></center>
</p>
</form>
</body>
</html>
ไฟล์แก้ไข
<?php
//*** Update Record ***//
$objConnect = mysql_connect("linuxdb2.rmutsv.ac.th","asusystem","asu@2558") or die("Error Connect to Database");
$objDB = mysql_select_db("asu_project");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$strSQL = "UPDATE tlo";
$strSQL .=" SET tlo_id = '".$_POST["tlo_id"]."' ,
tlo_date_req = '".$_POST["tlo_date_req"]."' ,
tlo_date = '".$_POST["tlo_date"]."' ,
fac_id = '".$_POST["fac_id"]."' ,
tlo_namereq = '".$_POST["tlo_namereq"]."' ,
tlo_inventor = '".$_POST["tlo_inventor"]."' ,
tlo_name = '".$_POST["tlo_name"]."' ,
status_id = '".$_POST["status_id"]."' ,
date_status = '".$_POST["date_status"]."' ,
tlo_conclu = '".$_POST["tlo_conclu"]."' ,
tlo_detail = '".$_POST["tlo_detail"]."' ,
type_id = '".$_POST["type_id"]."'
WHERE tlo_noreq = '".$_GET["tlo_noreq"]."' ";
$objQuery = mysql_query($strSQL);
if($_FILES["filUpload"]["name"] != "")
{
if(move_uploaded_file($_FILES["filUpload"]["tmp_name"],"myfile/".$_FILES["filUpload"]["name"]))
{
//*** Delete Old File ***//
@unlink("myfile/".$_POST["hdnOldFile"]);
//*** Update New File ***//
$strSQL = "UPDATE tlo ";
$strSQL .=" SET filUpload = '".$_FILES["filUpload"]["name"][0]."',
filUpload1 = '".$_FILES["filUpload1"]["name"][1]."',
filUpload2 = '".$_FILES["filUpload2"]["name"][2]."',
filUpload3 = '".$_FILES["filUpload3"]["name"][3]."',
filUpload4 = '".$_FILES["filUpload4"]["name"][4]."'
WHERE tlo_noreq = '".$_GET["tlo_noreq"]."' ";
$objQuery = mysql_query($strSQL);
echo "Copy/Upload Complete<br>";
}
}
?>
<a href="PageUploadToMySQL3.php">View files</a>
Tag : PHP
|
|
|
|
|
|
Date :
2019-02-28 10:58:48 |
By :
lusiicake |
View :
591 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
?????
ที่ต้องการก็คือ การอัพโหลดไฟล์ใหม่ไปแทนที่ไฟล์เก่า ไม่ได้หรือป่าวครับ
code ก็เยอะนำครับ ลองใส่ เช็ค error เข้าไปด้วยดูครับ ถ้ามัน error มันน่าจะบอก
บรรทัดที่ 25 กับ 43
|
|
|
|
|
Date :
2019-02-28 14:06:02 |
By :
nobetaking |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก่อนเซฟไฟล์ใหม่ ก็ให้ตรวจสอบว่ามี ไฟล์เก่าไหม ถ้ามีก็ให้ลบ
ส่วนการเขียนไฟล์ ลบไฟล์ มันมีการกำหนดสิทธิ์ permission ศึกษาเรื่องนี้ไว้ ด้วย
จะได้เข้าใจการทำงานมากขึ้น
ส่วนที่บอกว่า เซฟไม่ได้แต่ไม่มีเออเร่อร์ น่ะไม่จริง แต่มันถูกซ่อนการแสดงเออเร่อร์ไว้
ลองไปหาอ่าน php error log ดู ว่ามันมี error อะไร
เล้วถ้าเป็นไปได้ ในขณะที่กำลัง develop อยู่ ก็เปิดการแสดง เออเร่อร์ ไว้
โค๊ดmysql function มันจะตกโลกอยู่แล้ว ยังใช้มันอยู่อีก
|
|
|
|
|
Date :
2019-03-01 08:55:05 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|