|
|
|
การ uploadไฟล์ภาพ มันติดคือเก็บไฟล์ทับกันและเก็บไม่เข้าตามไดเรคทอรี่ที่ตั้งไว้คือ upload files ซึ่งอยู่ในระดับเดี่ยวกันกับโค้ดและไฟล์ที่เก็บไม่เป็นไฟล์รูปช่วยดูให้หน่อยค่ะ โค้ดตามข้างล่างเนี้ยค่ะ |
|
|
|
|
|
|
|
มันติดคือเก็บไฟล์ทับกันและเก็บไม่เข้าตามไดเรคทอรี่ที่ตั้งไว้คือuploadfiles ซึ่งอยู่ในระดับเดี่ยวกันกับโค้ดและไฟล์ที่เก็บไม่เป็นไฟล์รูปช่วยดูให้หน่อยค่ะ
Code (PHP)
<table width="626" height="435" border="0" align="center" cellpadding="0" cellspacing="0">
<form action="" method="post" enctype="multipart/form-data" name = "frms" >
<tr>
<td width="123" height="22" align="left">ประเภทอะไหล่</td>
<td colspan="2" align="left" valign="middle" ><select name="category_id" >
<?
include("connect.php");
$sql = "select * from category";
$result = mysql_db_query($dbname,$sql);
while($rc = mysql_fetch_array($result)){
echo "<option value='$rc[category_id]'>$rc[category_name]</option>";
}
?>
</select> </td>
</tr>
<tr>
<td height="22" align="left">รหัสอะไหล่</td>
<td colspan="2" align="left" valign="middle" ><input name="spare_id" type="text" class="textfield" value="" size="20"/></td>
</tr>
<tr>
<td height="22" align="left">ชื่ออะไหล่</td>
<td colspan="2" align="left" valign="middle" ><input name="spare_name" type="text" class="textfield_n" value="" size="30" /></td>
</tr>
<tr>
<td height="22" align="left">จำนวน</td>
<td width="343" align="left" valign="middle" ><input name="number" type="text" class="textfield" value="" size="10" /></td>
<td width="160" rowspan="4" align="center" valign="middle" >
<img src="imageupload/<?= $s_images ?>" width="80" height="80"> </td>
</tr>
<tr>
<td height="22" align="left">หน่วยนับ</td>
<td align="left" valign="middle" ><input name="unit" type="text" class="textfield" value="" size="10" id="unit" /></td>
</tr>
<tr>
<td height="22" align="left">จุดสั่งซื้อ</td>
<td align="left" valign="middle" ><input name="limitt" type="text" class="textfield" value="" size="10" /></td>
</tr>
<tr>
<td height="22" align="left">ระยะเวลาจัดซื้อ</td>
<td align="left" valign="middle" ><input name="retime" type="text" class="textfield" value="" size="10"/>
วัน</td>
</tr>
<tr>
<td height="22" align="left">สถานที่เก็บอะไหล่</td>
<td colspan="2" align="left" valign="middle" ><input name="s_at" type="text" class="textfield_n" value="" size="40"/> </td>
</tr>
<tr>
<td height="22" align="left">เลือกไฟล์ภาพ</td>
<td colspan="2" align="left" valign="middle" ><input name="pic" type="file" class="textfield_n" id="pic" size="39" /></td>
</tr>
<tr>
<td height="22" align="left"> </td>
<td colspan="2" align="left" valign="middle" ><input type="submit" name="sudmit" id="button" value="บันทึก" />
<input type="reset" name="button2" id="button2" value="ยกเลิก" /> </td>
</tr>
</form>
<?
//กำหนดตัวแปรเพื่อนำไปใช้งาน
if($_POST['sudmit']){
include('connect.php');
//การรับค่ามาแก้ไข
//$spare_id=$_POST['spare_id'];
mysql_select_db($dbname) or die("เลือกฐานข้อมูลไม่ได้");// เลือกฐานข้อมูล
if($num_rows != 0){
echo"<script>alert('ชื่ออะไหล่นี้มีอยู่แล้ว');window.location='add_Ds.php';</script>";
}else{
$pic=$_FILES['pic']['tmp_name'];
$pic_name=$_FILES['pic']['name'];
$pic_size=$_FILES['pic']['size'];
$pic_extension = substr($pic_type,(strrpos($pic_type,"/")+1));
$pic_type=$_FILES['pic']['type'];
$array_last=explode(".",$pic_name);
$c=count($array_last)-1;
$lastname=strtolower($array_last[$c]);
if($lastname=="gif" or $lastname=="jpg" or $lastname=="jpeg"){
$set_pic=explode(".",$pic_name);
$pname="pk_".$pktourid;
$plname=$set_photo[1];
$picname=$pname.".".$plname;
copy($pic,"../uploadfiles".$picname);
$sql = "insert into spareparts (spare_id,category_id,spare_name,number,unit,limitt,retime,s_at,pic) values('$spare_id','$category_id','$spare_name','$number','$unit','$limitt','$retime','$s_at', '$picname')";
//กำหนดคำสั่ง SQL เพื่อเพิ่มข้อมูลแบบคีย์ในคำสั่ง SQL
//}
$dbquery = mysql_db_query($dbname, $sql);
mysql_close();
if(!$dbquery){
echo mysql_error();
}else{
echo"<script>alert('เพิ่มข้อมูลเรียบร้อย');window.location='spareparts.php';</script>";
}
} else {
echo"<script>alert('เพิ่มข้อมูลเรียบร้อย');window.location='add_Ds.php';</script>";
}
unlink($pic);
}
}
//}
// }
?>
Tag : PHP
|
|
|
|
|
|
Date :
2011-07-08 00:34:01 |
By :
มาม่า |
View :
1261 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รองนำไปประยุกต์ดูนะครับ
Code (PHP)
<form action="" method="post" enctype="multipart/form-data" name="form1" id="form1">
<input type="file" name="file" id="file" />
<label>
<input type="submit" name="btnUpload" value="upload" />
</label>
</form>
<?
if($_POST[btnUpload]){
$path="fileupload/"; // folder ที่อยู่ของไฟล์
if($_FILES[file][type]=="application/pdf"){ // check ว่าใช้นามสกุล .pdf
$t=time();
$newname ="$t.pdf";
copy($_FILES['file']['tmp_name'],$path.$newname);
}else if($_FILES[file][type]=="image/gif"){ // check ว่าใช้นามสกุล .gif
$t=time();
$newname ="$t.gif";
copy($_FILES['file']['tmp_name'],$path.$newname);
}else if($_FILES[file][type]=="image/jpeg"){ // check ว่าใช้นามสกุล .่jpf
$t=time();
$newname ="$t.jpg";
copy($_FILES['file']['tmp_name'],$path.$newname);
}
///////////////////////////////////////////////////////////////////////////////////
/// ส่วนข้างล่างนี้เป็นการ check ว่าไฟล์มีค่าว่างหรือไม่ (ถ้าประเภทไฟล์ไม่ตรงตามเงื่อนไข ไฟล์จะเป็นค่าว่าง) ///
///////////////////////////////////////////////////////////////////////////////////
if($newname==""){ // ถ้าไฟล์ upload เท่ากับค่าว่าง
echo "ประเภทของไฟล์ไม่ถูกต้อง จะเป็นเป็น .pdf .gif .jpg เท่านั้น";
exit();
}else{ // ถ้าไฟล์ upload มีค่า ให้ทำการ upload เข้า Database
include ("config.inc.php");
$sql = "INSERT INTO pdf (pdf_id,pdf_name) VALUES ('','$newname')";
$result = mysql_query($sql);
}
}
?>
|
ประวัติการแก้ไข 2011-07-08 01:58:39
|
|
|
|
Date :
2011-07-08 01:57:28 |
By :
systemanalysis |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้แล้วค่ะ ขอบคุณค่ะ
|
|
|
|
|
Date :
2011-07-10 00:36:07 |
By :
มาม่า |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|