|
|
|
เกี่ยวกับฟังก์ชันอัพเดตข้อมูล หากไม่มีการเปลี่ยนแปลงรูปภาพค่ะ |
|
|
|
|
|
|
|
จากโค้ดที่หนูเขียนด้านล่าง เป็นการอัพเดตข้อมูลค่ะ จากโค้ดนี้เมื่อหนูทดสอบแล้วใช้งานได้ปกติค่ะ
ติดแต่ตรงที่ว่า ถ้าหนูไม่เปลี่ยนรูปภาพที่ใช้ พอกด submit กลับกลายเปนว่า รูปภาพหายไป ไม่มีรูปภาพแทน แต่หากมีการเลือกรูปก็สามารถอัพเดทได้ปกติค่ะ
ตรงนี้มีวิธีแก้มั้ยคะ ถ้าหากหนูจะไม่เปลี่ยนรูปภาพ แต่รูปเดิมยังคงอยู่
ขอบคุณล่วงหน้าสำหรับคำตอบนะคะ
Code (PHP)
<?
ob_start();
session_start();
if($_SESSION["adminlogin"]=="")
{
header('location:login.php');
exit();
}
require ("config.php");
require ("function.php");
//=========== กรณีมีการแก้ไขรายการสินค้า
if($_GET["Action"]=="Save")
{
$realname = $HTTP_POST_FILES['fileupload']['name'];
$str=substr($realname,-3,3);
if (is_uploaded_file($HTTP_POST_FILES['fileupload']['tmp_name']))
{
copy($HTTP_POST_FILES['fileupload']['tmp_name'], "./image/$realname");
$url="image/$realname";
$filename=$HTTP_POST_FILES['fileupload']['name'];
$size=$HTTP_POST_FILES['fileupload']['size']/1024/1024;
$size1=number_format($size,3);
}
else
{
echo "Upload not complete";
};
$sql_up = "update nutritionfact set ProductID='$_POST[txtpid]', ProductName='$_POST[txtprod]', Serving_Size='$_POST[txtserv]', Times='$_POST[txttime]', Energy='$_POST[txtener]', Sugars='$_POST[txtsuga]', Total_Fat='$_POST[txttota]', Sodium='$_POST[txtsodi]', Fig='$url' where ProductID='$_GET[ProductID]'";
$dbquery_up = mysql_query($sql_up) or die(mysql_error());
echo"<script language='JavaScript'>";
echo"alert('แก้ไขข้อมูลเรียบร้อยแล้ว');";
echo"window.location='update_admin.php';";
echo"</script>";
}
?>
<html>
<title>Edit Product's Data</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<script language="JavaScript" src="editor.js"></script>
<script type="text/javascript">
function senddata()
{
if(document.getElementById('txtpid').value.length == 0)
{
alert ('ระบุรหัสผลิตภัณฑ์ด้วยค่ะ');
return false;
}
document.getElementById('submit').disabled = true;
return true;
}
function AddOk(pathfile)
{
document.getElementById('fileupload').value = "";
document.getElementById('showdetail').innerHTML = 'เพิ่มข้อมูลเสร็จเรียบร้อยแล้ว';
document.getElementById('submit').disabled = false;
document.getElementById('AddPForm').reset();
return true;
}
</script>
<div align="center"><br>
<?
//=========== อ่านว่าคือสินค้าชนิดใด
$result=select("nutritionfact","where 1=1 and ProductID='".$_GET["ProductID"]."'");
if(!$result)
{
header("location:update_admin.php");
}
?>
<form name="frm<?=$i;?>" id="AddPForm" method="post" action="<?=$_SERVER['PHP_SELF'];?>?ProductID=<?=$_GET["ProductID"];?>&Action=Save" enctype="multipart/form-data" onSubmit="return checkvalue()">
<table cellspacing=1 cellpadding=3 width="56%" bgcolor=#CCCCCC border=0 align="center" height="10">
<tbody>
<tr bgcolor=#e5e5e5>
<td bgcolor="#FFFFFF"> <script language="Javascript1.2"><!-- // load htmlarea
_editor_url = ""; // URL to htmlarea files
var win_ie_ver = parseFloat(navigator.appVersion.split("MSIE")[1]);
if (navigator.userAgent.indexOf('Mac') >= 0) { win_ie_ver = 0; }
if (navigator.userAgent.indexOf('Windows CE') >= 0) { win_ie_ver = 0; }
if (navigator.userAgent.indexOf('Opera') >= 0) { win_ie_ver = 0; }
if (win_ie_ver >= 5.5) {
document.write('<scr' + 'ipt src="' +_editor_url+ 'editor.js"');
document.write(' language="Javascript1.2"></scr' + 'ipt>');
} else { document.write('<scr'+'ipt>function editor_generate() { return false; }</scr'+'ipt>'); }
// --></script>
<script language="JavaScript">
function checkvalue()
{
}
</script>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td width="34%"> </td>
<td width="66%"> </td>
</tr>
<tr>
<td valign="top"><font size="+1">Product's ID</font></td>
<td><input name="txtpid" type="text" class="txtbox" id="txtpid" value="<?=$result["ProductID"];?>" maxlength="20" readonly="true">
</td>
</tr>
<tr>
<td valign="top"><font size="+1">Product's Name</font></td>
<td><input name="txtprod" type="text" class="txtbox" id="txtprod" value="<?=$result["ProductName"];?>" size="16" maxlength="20">
</td>
</tr>
<tr>
<td valign="top"><font size="+1">Serving size</font></td>
<td><input name="txtserv" type="text" class="txtbox" id="txtserv" value="<?=$result["Serving_Size"];?>" size="16" maxlength="20"></td>
</tr>
<tr>
<td valign="top"><font size="+1">Times</font></td>
<td><input name="txttime" type="text" class="txtbox" id="txttime" value="<?=$result["Times"];?>" size="16" maxlength="20">
ครั้ง </td>
</tr>
<tr>
<td valign="top"><font size="+1">Energy</font></td>
<td><input name="txtener" type="text" class="txtbox" id="txtener" value="<?=$result["Energy"];?>" size="16" maxlength="20"> กิโลแคลอรี</td>
</tr>
<tr>
<td valign="top"><font size="+1">Sugars</font></td>
<td><input name="txtsuga" type="text" class="txtbox" id="txtsuga" value="<?=$result["Sugars"];?>" size="16" maxlength="20">
กรัม</td>
</tr>
<tr>
<td valign="top"><font size="+1">Total Fat</font></td>
<td><input name="txttota" type="text" class="txtbox" id="txttota" value="<?=$result["Total_Fat"];?>" size="16" maxlength="20">
กรัม</td>
</tr>
<tr>
<td valign="top"><font size="+1">Sodium</font></td>
<td><input name="txtsodi" type="text" class="txtbox" id="txtsodi" value="<?=$result["Sodium"];?>" size="16" maxlength="20">
มิลลิกรัม </td>
</tr>
<tr>
<td valign="top"><font size="+1">รูปสินค้า</font></td>
<td><input name="fileupload" type="file" class="txtbox" id="fileupload" value="<?=$result["Fig"];?>"></td>
</tr>
</tr>
<tr>
<td></td>
<td><input name="Submit" type="submit" class="button" value="Done">
<input name="Cancel" type="button" class="button" id="Cancel" value="Cancle" onClick="window.location='update_admin.php';"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table></td>
</tr>
</tbody>
</table>
</form>
Tag : PHP, MySQL, JavaScript
|
|
|
|
|
|
Date :
2012-03-17 19:38:51 |
By :
Supergirl |
View :
1060 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณ update ลงใน mysql แล้วหรือยังครับ
|
|
|
|
|
Date :
2012-03-17 20:42:55 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูตัวอย่างนี้ครับ
Code (PHP)
<?
//*** Update Record ***//
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "UPDATE files ";
$strSQL .=" SET NAME = '".$_POST["txtName"]."' WHERE FilesID = '".$_GET["FilesID"]."' ";
$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 files ";
$strSQL .=" SET FilesName = '".$_FILES["filUpload"]["name"]."' WHERE FilesID = '".$_GET["FilesID"]."' ";
$objQuery = mysql_query($strSQL);
echo "Copy/Upload Complete<br>";
}
}
?>
จากตัวอย่างจะ update กรณีที่มีไฟล์ใหม่ครับ
|
|
|
|
|
Date :
2012-03-17 20:44:03 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่อออ
เข้าใจแล้วค่ะ ขอบคุณค่ะ
|
|
|
|
|
Date :
2012-03-17 21:49:23 |
By :
Supergirl |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|