เช็คขนาดของรูปภาพและชนิดตอน upload เมื่อมีการ browse ภาพต้องการให้ระบบตรวจขนาดของรูปก่อนไม่เกิน 400 k
ขอบคุณค่ะ แต่ไม่พอใช้ประกอบการทำงานค่ะ
Date :
12 มี.ค. 2551 09:35:12
By :
lek
จัดไปไม่มีกั๊ก ไปศึกษาเอาเอง ผมเคยผ่านจุดนี้ผมเข้าใจ
if($_FILES['pictures']['type'] !="image/gif" and $_FILES['pictures']['type'] !="image/pjpeg" ){
echo "<strong>Message Alert !!</strong> ให้ใช้ไฟล์รูปภาพนามสกุล .GIF หรือ .JPEG เท่านั้นนะครับ";
}elseif($_FILES['pictures']['size'] > 512000){
echo "<strong>Message Alert !!</strong> รูปภาพมีขนาดใหญ่เกินกว่าที่กำหนด";
}
// นำฟังก์ชั่น Ramdom password มาใช้เพื่อกำหนดชื่อไฟล์ป้องกันการซ้ำกัน
function random_password($len)
{
srand((double)microtime()*10000000);
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
$ret_str = "";
$num = strlen($chars);
for($i = 0; $i < $len; $i++)
{
$ret_str.= $chars[rand()%$num];
$ret_str.="";
}
return $ret_str;
}
$passw = random_password(7);
$path="pic";
$filenewcon = strstr($pictures_name,'.');
$now = date("Dgis");
copy( $pictures ,"$path/$passw$now$filenewcon");
$startdate = date("Y-m-d H:i:s");
$enddate =date("Y-m-d H:i:s",strtotime("+$daybid day ",strtotime($startdate)));
$description = nl2br($description);
mysql_query("insert into product(`memid`, `protype`, `protopic`, `prodesc`, `propic`, `startprice`, `addprice`, `tendate`, `tenstart`, `tenend`, `cpstatus`)
values ('$user_id','$type','$topic','$description','$passw$now$filenewcon','$startprice','$upprice','$daybid','$startdate','$enddate','no')");
ถ้าขนาดนี้ยังไม่เพียงพอก็ อะจึ๋ย
Date :
13 มี.ค. 2551 01:30:22
By :
กบนอกกะลา
ขอบคุณมากนะค่ะ คุณกบนอกกะลา แต่ด้วยความที่ดิฉันทำ browse ออกแบบเผื่อไว้ 30 ตัวดิฉันต้องไปกำหนดเงื่อนไขในโค้ดนี้ยังไงเพิ่มเติมค่ะถึงจะสามารถ insert ได้ทุกตัว
Date :
13 มี.ค. 2551 10:25:57
By :
lek
Code
CREATE TABLE picture (
id int(11) NOT NULL auto_increment,
picture varchar(50) NOT NULL default '',
PRIMARY KEY (id)
) TYPE=MyISAM;
Sample1.php
<html>
<body>
<form name="form1" enctype="multipart/form-data" method="post" action="Sample2.php">
เลือกไฟล์ที่จะ Uploads
<input type="file" name="file">
<input type="submit" name="Submit" value="Uploads">
</form>
</body>
</html>
Sample2.php
<?
$host="localhost";
$username="";
$pass_word="";
$db="mydatabase";
$tb="picture";
mysql_connect( $host,$username,$pass_word) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้");
// นำฟังก์ชั่น Ramdom password มาใช้เพื่อกำหนดชื่อไฟล์ป้องกันการซ้ำกัน
function random_password($len)
{
srand((double)microtime()*10000000);
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
$ret_str = "";
$num = strlen($chars);
for($i = 0; $i < $len; $i++)
{
$ret_str.= $chars[rand()%$num];
$ret_str.="";
}
return $ret_str;
}
// echo random_password(8);
$passw = random_password(7);
$path="picture";
$filenewcon = strstr($file_name,'.');
$now = date("Dgis");
if(empty($file))
{
echo"กรุณาเลือกไฟล์";
}
else
{
copy( $file ,"$path/$passw$now$filenewcon");
$sql1= "INSERT INTO $tb (id,picture) VALUES ('','$passw$now$filenewcon')";
$dbquery1 = mysql_db_query($db, $sql1);
echo"Uploads ไฟล์สำเร็จ<br>";
echo"<a href='Sample3.php'>ดูไฟล์ทั้งหมด</a><br>";
}
?>
Sample3.php
<html>
<body>
<?
$host="localhost";
$username="";
$password="";
$db="mydatabase";
$tb="picture";
mysql_connect( $host,$username,$password) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้"); /* ทำการเลือกฐานข้อมูลก่อน */
$sql="Select * From $tb";
$db_query=mysql_db_query($db,$sql);
$num_rows=mysql_num_rows($db_query); /* นับ Reccord ที่พบ */
?>
<table width="41%" border="1" align="center">
<tr>
<td width="8%">
<div align="center">Id</div>
</td>
<td width="11%">
<div align="center">File Name</div>
</td>
</tr>
</table>
<?
$a=0;
while($a < $num_rows)
{
$result = mysql_fetch_array($db_query);
$id=$result[id];
$picture=$result[picture];
?>
<table width="41%" border="1" align="center">
<tr>
<td width="8%">
<div align="center">
<?echo"$id";?>
</div>
</td>
<td width="11%">
<div align="center"> <a href="picture/<?echo"$picture";?>" target="_blank">
<?echo"$picture";?>
</a></div>
</td>
</tr>
</table>
<?
$a++;
}
echo"<center><br>จำนวน Reccord = $num_rows</center>";
mysql_close();
?>
</body>
</html>
Date :
2009-04-25 17:04:45
By :
webmaster
Load balance : Server 05