ตามหลักปกติจะให้อับโหลดขนาดไฟล์เท่าไหร่ครับแล้วต้องไปตั้งค่าตรงไหนหรือเปล่าครับ แล้วเราจะเขียนดักอย่างไรครับเช่นถ้าต้องการให้ส่งไม่เกิน 2 M จะได้ไหมครับ
$conn=mysql_connect($host,$user,$password) or die("Not Connect Database Error!!");
$selectDb=mysql_select_db($db);
?>
if (empty($uploadfile_size) || (filesize($uploadfile)/1048576)>2097152){
echo "Don't have data in this Or File Size have over ";
echo "<meta http-equiv=refresh content='21;URL=index.html'>";
exit;
}
$path="picture/".$uploadfile_name;
$sql="insert into $tb(id, path) values('$id','$path')";
if ($conn) {
echo "<br>";
echo "Size Of pictue : $uploadfile_size KB";
$result=mysql_query($sql);
copy($uploadfile,$path);
if ($result) {
echo "Add Data !! ";
}
else {
echo "Not Add Data";
echo "<meta http-equiv=refresh content='2;URL=index.html'>";
}