|
|
|
จะทำให้ อัปโหลดไฟล์ รูปภาพเป็น array 15 ภาพ ครับ ตัวอย่างจากในเว็ปนี้ครับ |
|
|
|
|
|
|
|
จะทำให้ อัปโหลดไฟล์ รูปภาพเป็น array 15 ภาพ ครับ และให้เอาชื่อภาพลงฐานข้อมูล
test.php
Code (PHP)
<!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=windows-874" />
<title>Untitled Document</title>
</head>
<body><span id="inputProduct">
<b>กรุณาเลือกไฟล์ที่ต้องการ Upload:</b>
<form name="frm" method="post" action="test_in.php" enctype="multipart/form-data" target="ifrm">
<input type="file" name="pic" size="50" />
<p>
<input type="submit" value="Upload Now" />
</form></span>
<div id="msg" ></div>
<iframe name="ifrm" style="display:none;"></iframe>
</body>
</html>
test_in.php
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<?
$pic = '<table width="400" border="1">';
$pic .= '<tr>';
$pic .= '<td>';
$response = "";
$save_path = "";
if($_FILES['pic']['error'] != 0){
//$response = "Error: {$_FILES['upfile']['error']}";
$pic .= "Error: {$_FILES['pic']['error']} <br>";
}
else{
$accept_types = array("image/gif", "image/jpeg", "image/pjpeg", "image/png", "image/x-png");
$type = $_FILES['pic']['type'];
if(!in_array($type, $accept_types)){
//$response .= "ต้องใช้ไฟล์ชนิด .gif, .jpeg, .jpg หรือ .png เท่านั้น<br>";
$pic .= "ต้องใช้ไฟล์ชนิด .gif, .jpeg, .jpg หรือ .png เท่านั้น<br>";
}
else{
$save_dir = "myfile";
$save_path = $save_dir."/".$_FILES['pic']['name'];
if(!move_uploaded_file($_FILES['pic']['tmp_name'], $save_path)){
//$response .= "ไม่สามารถบันทึกไฟล์ได้";
$pic .= "ไม่สามารถบันทึกไฟล์ได้ <br>";
}
$sizepic = round(($_FILES['pic']['size'])/1024,2);
$pic .= '<img id="image" src="'.$save_path.'" /><br>';
$pic .= "name: {$_FILES['pic']['name']}<br>";
$pic .= "size(Kb) :".$sizepic."<br>";
$pic .= "type : ".$_FILES['pic']['type']."<br>";
$pic .= $save_path;
}
}
$pic .= '</td>';
$pic .= '</tr>';
$pic .= "</table>";
?>
<script>
top.document.getElementById('msg').innerHTML = '<? echo $pic; ?>';
top.document.getElementById('inputProduct').innerHTML = '<? echo ''; ?>';
</script>
ตัวอย่าง จาก https://www.thaicreate.com/php/forum/053263.html
Tag : PHP, JavaScript, Action Script, Ajax, jQuery
|
ประวัติการแก้ไข 2017-04-27 11:00:48 2017-04-27 11:01:42
|
|
|
|
|
Date :
2017-04-27 10:59:43 |
By :
sawmon |
View :
670 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|