|
|
|
เก็บรูปลงโฟลเดอร์....อยากทราบวิธีการเก็บรูปลงโฟลเดอร์ Image อ่าค่ะ ต้องใช้โค้ดยังไงค่ะ |
|
|
|
|
|
|
|
อยากทราบวิธีการเก็บรูปลงโฟลเดอร์ Image อ่าค่ะ ต้องใช้โค้ดยังไงค่ะ
แต่ชื่อ path ลง db แล้วค่ะ
ที่ทำมามันยังไม่เข้า โฟลเดอร์ Image ค่ะ รบกวนด้วยค่ะ รอคำตอบอยู่นะคะ ^^
Code
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("tample");
$strSQL = "INSERT INTO admin_news ";
$strSQL .="(Topic,Detail,DMY,Who,Pic1,Pic2,Pic3,Pic4,File) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtTopic"]."','".$_POST["txtDetail"]."','".$_POST["txtDate"]."' ";
$strSQL .=",'".$_POST["txtWho"]."','".$_POST["FileUpload1"]."','".$_POST["FileUpload2"]."' ";
$strSQL .=",'".$_POST["FileUpload3"]."','".$_POST["FileUpload4"]."','".$_POST["FileUpload5"]."') ";
$objQuery = mysql_query($strSQL);
echo $strSQL;
if($objQuery)
{
echo "ข้อมูลได้ถูกเพิ่มเรียบร้อยแล้วค่ะ";
}
else
{
echo "ไม่สามารถเพิ่มข้อมูลได้ค่ะ [".$strSQL."]";
}
mysql_close($objConnect);
?>
ส่วนการแสดงผล
Code
<tr width='530' align='center' border='0'>
<td border='0'><br><img src="image/<?=$objResult["Pic1"];?>" border="0"></td>
</tr>
Tag : - - - -
|
|
|
|
|
|
Date :
2010-07-09 23:18:05 |
By :
kapi |
View :
1163 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คำสั่ง upload รูปลงโฟเดอร์อยู่ตรงไหนครับ
Code (PHP)
copy(source,destination);
|
|
|
|
|
Date :
2010-07-09 23:31:13 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งั้นผมช่วยหาครับ
<?
require("config.inc.php");
if(trim($_FILES["fileUpload1"]["tmp_name"]) != ""){
$images = $_FILES["fileUpload1"]["tmp_name"];
$new_images1 = $_FILES["fileUpload1"]["name"];
copy($_FILES["fileUpload1"]["tmp_name"],"/image/".$_FILES["fileUpload1"]["name"]);
}
else
{ $images = $_POST["oldpic1"];
$new_images1 = $images; }
///กรณีมีภาพมากกว่า 1 อัน
if(trim($_FILES["fileUpload2"]["tmp_name"]) != ""){
$images = $_FILES["fileUpload2"]["tmp_name"];
$new_images2 = $_FILES["fileUpload2"]["name"];
copy($_FILES["fileUpload2"]["tmp_name"],"/image/".$_FILES["fileUpload2"]["name"]);
}
else
{ $images = $_POST["oldpic2"];
$new_images2 = $images; }
{
$sql = " UPDATE table_image SET image1 = '$new_images1', image2 = '$new_images2' where id =$id ";
$dbquery = mysql_query($sql) or die (mysql_error());
if($dbquery)
{
?>
<script>
alert("แก้ไขข้อมูลสำเร็จ");
window.location="index.php";
</script>
<?
}
else
{
?>
<script>
alert("ผิดพลาด ! แก้ไขข้อมูลไม่สำเร็จ");
window.location="index.php";
</script>
<?
}
}
?>
|
|
|
|
|
Date :
2010-07-10 09:44:34 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|