|
|
|
ทำไพล์ UpLoad ยังไงให้มันสามารถอัพได้ มากกว่า 1MB ครับ |
|
|
|
|
|
|
|
<?
include("include/connect.php");
// นำฟังก์ชั่น 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="files";
$now = date("Dgis");
$question_file=$_FILES['question_file']['tmp_name'];
$question_file_name=$_FILES['question_file']['name'];
$question_file_size=$_FILES['question_file']['size'];
$question_file_type=$_FILES['question_file']['type'];
if(empty($question_file))
{
$tb="tb_question";
$sql="INSERT INTO `$tb` (`question_id`, `question_name`, `question_detail`, `question_file`, `question_date`, `question_hit`, `question_by`, `question_email`) VALUES ('', '$question_name', '$question_detail','', '$question_date','0','$question_by','$question_email')";
}
else
{
$array_last=explode(".",$question_file_name);
$c=count($array_last)-1;
$lastname=strtolower($array_last[$c]);
if($lastname!="" ){
copy( $question_file,"$path/$passw$now$question_file_name");
unlink($question_file);
$tb="tb_question";
$sql="INSERT INTO `$tb` (`question_id`, `question_name`, `question_detail`, `question_file`, `question_date`, `question_hit`, `question_by`, `question_email`) VALUES ('', '$question_name', '$question_detail', '$passw$now$question_file_name', '$question_date','0','$question_by','$question_email')";
}else{
echo "ไม่สามารถเพิ่มการแชร์ $question_name นี้ได้ จะต้องเป็นไฟล์ jpg , jpeg และ gif เท่านั้น กรุณารอสักครู่ หรือ <a href=\"question_add.php\">คลิก</a>";
echo "<meta http-equiv=\"refresh\" content=\"3;URL=question_add.php\">";
}
}
if(mysql_query($sql)){
?>
<style type="text/css">
<!--
.style5 {color: #00CC00}
-->
</style>
<span class="style5"><img src="images/success.gif" width="16" height="16" /> เพิ่มการแชร์ <? echo $question_name;?> เรียบร้อบแล้ว กรุณารอสักครู่ หรือ <a href="index.php">คลิก</a> </span>
<meta http-equiv="refresh" content="3;URL=index.php">
<span class="style5">
<?
}else{
echo "ไม่สามารถเพิ่มการแชร์ $question_name นี้ได้ กรุณารอสักครู่ หรือ <a href=\"question_add.php\">คลิก</a>";
echo "<meta http-equiv=\"refresh\" content=\"3;URL=question_add.php\">";
}
mysql_close($connect);
?>
</span>
<link href="style.css" rel="stylesheet" type="text/css" />
<span class="style5">
<style type="text/css">
<!--
body {
margin-left: 3px;
margin-top: 6px;
margin-bottom: 2px;
}
-->
</style>
</span>
<div class="style5" id="loading" style="position:absolute; top:45%; left:35%; visibility:visible;">
<table width="220" border="1" bordercolor="#FF0000">
<tr>
<td><img src="images/indicator.gif" width="32" height="32" style="cursor:wait"/><img src="images/loading.gif" width="193" height="32" /></td>
</tr>
</table>
</div>
Tag : - - - -
|
|
|
|
|
|
Date :
12 ก.พ. 2550 16:17:21 |
By :
teerungkul |
View :
1743 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มัน เป็นที่ความเร็วเน็ต หรือเปล่า ปกติ ทั่วไปตามมาตราฐาน อัพได้ผ่ายเบราเซอร์ 5 เมก ครับ ขึ้นอยุ่ความเร็วในการส่งขอมูลด้วย ครับ ถ้าช้า เกินเวลา มันจะตัดเป็นส่ไม่ได้ครับ
ทั้งนี้ทั้งนั้นขึ้นอยุ่กับเซิฟเวอร์ด้วยว่า ระบุให้อัพได้เท่าไหร่ครับ
|
|
|
|
|
Date :
12 ก.พ. 2550 16:35:05 |
By :
arsachi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|