|
|
|
ใครเก่ง เรื่องการ แก้ไขรูปภาพ หรือ การเปลี่ยนรูปภาพ ช่วยทีครับ T T |
|
|
|
|
|
|
|
ณ ตอนนี้ ทำการสินค้าได้ปกติ เวลา เพิ่มรูป รายละเอียดต่างๆ ได้ชัดเจน
แต่ปัญหา ดันมาเกิด ตรงเวลา การแก้ไขข้อมูล ณ ตอนนี้การ แก้ไข ข้อมูลทุกอย่างอัพเดจ ตามคำส่วน ยกเว้น เปลี่ยนแปลงรูป
ดังรูปภาพ ที่ 1 อันนี้คือการ แก้ไข้ข้อมูล
ปล.ส่วนในลบรูปภาพ/แสดงรูปภาพ สามารถ ลบรูปได้/แสดงรูปได้
****ถ้าสมมุติจะเปลี่ยนรูปภาพ จะต้องทำการลบก่อน โดย Checkbox ลบรูปภาพก่อน แล้วกดแก้ไข มันก็จะลบรูปเอง***
ดังรูปที่ 2 ในส่วนที่จะ อัพโหลดรูปลงไปใหม่
ปล.ปัญหาคือตรง อัพโหลดภาพเข้าไปใหม่ TT
ส่วนของโค้ด
admin_produtc_edit.php
<?
session_start();
?>
<!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>
<? include "admin_menu.php" ?>
<form action="admin_product_edit2.php" method="post">
<?php
include("connect.php");
//คำสั่ง sql และสั่งให้ทำงาน
$sql="select * from tb_product where id_prd='$id_prd'"; //ให้แสดงข้อมูลที่จะแก้ไขโดยให้ id ที่เลือกแก้ไขตรงกับ id ในฐานข้อมูลและนำข้อมูลที่เลือกนั้นมาแสดง
$runquery = mysql_db_query($conn_db,$sql) or die ("Can not Query....");
$result=mysql_fetch_array($runquery);
//สร้างตัวแปรเพื่อกำหนดค่า
$id_prd=$result[id_prd];
$name_prd=$result[name_prd];
$detail_prd=$result[detail_prd];
$id_type=$result[id_type];
$price_prd=$result[price_prd];
$stock_prd=$result[stock_prd];
$photo_prd=$result[photo_prd];
//สร้างฟอร์มเพื่อแก้ไขข้อมูล
echo"<center>แก้ไขรายการสินค้าที่มีรหัส <font color=red>".$id_prd."</font></center>";
?>
<table width="650" border="0"cellspacing="1"cellpadding="0" align=center>
<tr>
<td><input name="id_prd" size="40" value="<? echo"$id_prd"; ?>" type="hidden"></td>
</tr>
<tr>
<td>ชื่อสินค้า</td>
<td><input type="text"name="name_prd" size="50" value="<? echo"$name_prd"; ?>"></td>
</tr>
<tr>
<td>รายละเอียด</td>
<td><textarea name="detail_prd" cols="60" rows="5"> <? echo"$detail_prd"; ?></textarea></td>
</tr>
<tr>
<td>ประเภทสินค้า</td>
<td><SELECT NAME="id_type">
<?
include "connect.php";
$sql="select * from tb_type";
$result=mysql_db_query($conn_db,$sql) or die ("Can not Query....");
while($rs=mysql_fetch_array($result)) {
$id_type=$rs[id_type];
$name_type=$rs[name_type];
if ($ref_id_type==$ref_id_type) {
echo "<OPTION VALUE='$id_type' SELECTED>$name_type</OPTION>";
} else {
echo "<OPTION VALUE='$id_type' >$name_type</OPTION>";
}
}
?>
</SELECT></td>
</tr>
<tr>
<tr>
<td>ราคาสินค้า</td>
<td><label>
<input name="price_prd" type="text" value="<? echo"$price_prd"; ?>"size="10">
</label>
บาท </td>
</tr>
<tr>
<td>สินค้าในสต๊อก</td>
<td><label>
<input name="stock_prd" type="text" value="<? echo"$stock_prd"; ?>"size="10">
</label>
ชิ้น</td>
</tr>
<tr>
<td>รูปภาพ</td>
<td>
<? if ($photo_prd<>"") {
echo " <input type='checkbox' name='chkdel' value='1' >ลบรูปภาพ<br>";
echo "<a href='photo/$photo_prd' target='_blank'> แสดงรูปภาพ </a>";
} else {
echo "<input type='file' name='fileupload' > ";
echo "<input type='hidden' name='MAX_FILE_SIZE' value='100000' > ";
}
?>
</td>
</tr>
<tr>
<td> </td>
<td><input name="submit" type="submit" value="แก้ไข">
<input name="reset" type="reset" value="เคลียร์">
<input name="id_edit" type="hidden" value="<?=$id_edit?>" />
<input name="photo_del" type="hidden"
value="<?=$photo_prd?>" />
</td>
</tr>
</table>
</form>
</body>
</html>
admin_produtc_edit2.php
<?php
session_start() ;
?>
<?
$id_edit=$_POST[id_edit];
$name_prd=$_POST[name_prd];
$detail_prd=$_POST[detail_prd];
$id_type=$_POST[id_type];
$price_prd=$_POST[price_prd];
$stock_prd=$_POST[stock_prd];
$fileupload=$_FILES['fileupload']['tmp_name'];
$fileupload_name=$_FILES['fileupload']['name'];
$fileupload_size=$_FILES['fileupload']['size'];
$fileupload_type=$_FILES['fileupload']['type'];
include "connect.php";;
if ($chkdel=="1") {
$sql3="update tb_product set photo_prd=''where id_prd='$id_edit'";
$result3=mysql_db_query($conn_db,$sql3);
unlink("photo/$photo_del");
}
if ($fileupload) {
$array_last=explode(".",$fileupload_name);
$c=count($array_last)-1;
$lastname=strtolower($array_last[$c]);
if ($lastname=="gif" or $lastname=="jpg" or $lastname=="jpeg") {
$photoname=$id_edit.".".$lastname;
copy($fileupload,"photo/".$photoname);
$sql3="update tb_product set photo_prd='$photoname'where id_prd='$id_edit'";
$result3=mysql_db_query($conn_db,$sql3);
}
unlink($fileupload);
}
$sql="update tb_product set
name_prd='$name_prd',
id_type='$id_type',
detail_prd='$detail_prd',
price_prd='$price_prd',
stock_prd='$stock_prd'
where id_prd='$id_edit' ";
$result=mysql_db_query($conn_db,$sql);
if ($result) {
echo "<h3><center>แก้ไขข้อมูล เรียบร้อย<br><img src='../Images/load.gif' /></center></h3>";
echo "<meta http-equiv='refresh' content='2 ;url=admin_product_add.php'>";
} else {
echo "<h3><center> ERROR : ไม่สามารถแก้ไขข้อมูลได้<br><img src='../Images/load.gif' /></center></h3>";
echo "<meta http-equiv='refresh' content='2 ;url=ad_product_edit.php?id_prd=$id_prd'>";
}
mysql_close();
?>
<!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>
</body>
</html>
ผมจนปัญญาแล้วจริงๆ T T นั่งทำเพิ่มรูปใหม่ มาหลายชม งง ตึบเลยครับ ช่วยดูโค้ดให้ทีครับ
Tag : PHP
|
|
|
|
|
|
Date :
2013-03-08 12:33:32 |
By :
imzpack |
View :
775 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
บรรทัดที่ 14
Code (PHP)
<?
session_start();
?>
<!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>
<? include "admin_menu.php" ?>
<form action="admin_product_edit2.php" method="post" enctype="multipart/form-data"> <!-- entype= เป็นการอนุญาตให้ฟอร์มส่งข้อมูลได้หลายประเภทพร้อมกัน เช่น ข้อความและรูปภาพ (อัพโหลดรูป) -->
<?php
include("connect.php");
//คำสั่ง sql และสั่งให้ทำงาน
$sql="select * from tb_product where id_prd='$id_prd'"; //ให้แสดงข้อมูลที่จะแก้ไขโดยให้ id ที่เลือกแก้ไขตรงกับ id ในฐานข้อมูลและนำข้อมูลที่เลือกนั้นมาแสดง
$runquery = mysql_db_query($conn_db,$sql) or die ("Can not Query....");
$result=mysql_fetch_array($runquery);
//สร้างตัวแปรเพื่อกำหนดค่า
$id_prd=$result[id_prd];
$name_prd=$result[name_prd];
$detail_prd=$result[detail_prd];
$id_type=$result[id_type];
$price_prd=$result[price_prd];
$stock_prd=$result[stock_prd];
$photo_prd=$result[photo_prd];
//สร้างฟอร์มเพื่อแก้ไขข้อมูล
echo"<center>แก้ไขรายการสินค้าที่มีรหัส <font color=red>".$id_prd."</font></center>";
?>
<table width="650" border="0"cellspacing="1"cellpadding="0" align=center>
<tr>
<td><input name="id_prd" size="40" value="<? echo"$id_prd"; ?>" type="hidden"></td>
</tr>
<tr>
<td>ชื่อสินค้า</td>
<td><input type="text"name="name_prd" size="50" value="<? echo"$name_prd"; ?>"></td>
</tr>
<tr>
<td>รายละเอียด</td>
<td><textarea name="detail_prd" cols="60" rows="5"> <? echo"$detail_prd"; ?></textarea></td>
</tr>
<tr>
<td>ประเภทสินค้า</td>
<td><SELECT NAME="id_type">
<?
include "connect.php";
$sql="select * from tb_type";
$result=mysql_db_query($conn_db,$sql) or die ("Can not Query....");
while($rs=mysql_fetch_array($result)) {
$id_type=$rs[id_type];
$name_type=$rs[name_type];
if ($ref_id_type==$ref_id_type) {
echo "<OPTION VALUE='$id_type' SELECTED>$name_type</OPTION>";
} else {
echo "<OPTION VALUE='$id_type' >$name_type</OPTION>";
}
}
?>
</SELECT></td>
</tr>
<tr>
<tr>
<td>ราคาสินค้า</td>
<td><label>
<input name="price_prd" type="text" value="<? echo"$price_prd"; ?>"size="10">
</label>
บาท </td>
</tr>
<tr>
<td>สินค้าในสต๊อก</td>
<td><label>
<input name="stock_prd" type="text" value="<? echo"$stock_prd"; ?>"size="10">
</label>
ชิ้น</td>
</tr>
<tr>
<td>รูปภาพ</td>
<td>
<? if ($photo_prd<>"") {
echo " <input type='checkbox' name='chkdel' value='1' >ลบรูปภาพ<br>";
echo "<a href='photo/$photo_prd' target='_blank'> แสดงรูปภาพ </a>";
} else {
echo "<input type='file' name='fileupload' > ";
echo "<input type='hidden' name='MAX_FILE_SIZE' value='100000' > ";
}
?>
</td>
</tr>
<tr>
<td> </td>
<td><input name="submit" type="submit" value="แก้ไข">
<input name="reset" type="reset" value="เคลียร์">
<input name="id_edit" type="hidden" value="<?=$id_edit?>" />
<input name="photo_del" type="hidden"
value="<?=$photo_prd?>" />
</td>
</tr>
</table>
</form>
</body>
</html>
|
|
|
|
|
Date :
2013-03-08 12:53:16 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|