|
|
|
พอดีผมอัพไฟล์แล้ว ชื่อมันเข้า DB แล้ว แต่ไฟล์มันไม่ copy อะครับ ไม่ error อะไรด้วย |
|
|
|
|
|
|
|
พอดีผมอัพไฟล์แล้ว ชื่อมันเข้า DB แล้ว แต่ไฟล์มันไม่ copy อะครับ
Code (PHP)
if($_REQUEST["btnSubmit2"]) {
if((($_FILES["upfile"]["type"]=="image/gif")||($_FILES["upfile"]["type"]=="image/jpeg")||($_FILES["upfile"]["type"]=="image/pjpeg"))&&($_FILES["upfile"]["size"]<200000)){
copy($_FILES["upfile"]["tmp_name"],"xxx/2012/uploads/" . $_FILES["upfile"]["name"])or die ("The file couldn't be copied to the server");
}
$_SESSION["firstname"]= $_REQUEST['firstname'];
$_SESSION["surname"]= $_REQUEST['surname'];
$_SESSION["email"]= $_REQUEST['email'];
$_SESSION["mobile"]= $_REQUEST['mobile'];
$_SESSION["edu_school"]= $_REQUEST['edu_school'];
$_SESSION["edu_level_class"]= $_REQUEST['edu_level_class'];
$sql1="SELECT count(email) as xemail FROM `register_new` WHERE email ='".$_SESSION["email"]."' ";
$rows=mysql_query($sql1) or die(mysql_error());
$result=mysql_fetch_assoc($rows);
if($result["xemail"]>=1){
echo '<script type="text/javascript">alert("Email นี้ มีผู้ใช้แล้ว กรุณากรอกEmail ใหม่ค่ะ");history.back(-1);</script>';
exit();
}
$sql="INSERT INTO register_new(name,surname,mobile,email,edu_level_class,edu_school,file,date_regis)
VALUES('".$_SESSION["firstname"]."','".$_SESSION["surname"]."','".$_SESSION["mobile"]."','".$_SESSION["email"]."','".$_SESSION["edu_level_class"]."','".$_SESSION["edu_school"]."','$upfile',NOW())";
Tag : PHP
|
ประวัติการแก้ไข 2012-07-26 13:30:02
|
|
|
|
|
Date :
2012-07-26 13:27:24 |
By :
l3alLkisS |
View :
935 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มี error ว่าไงครับ ติดที่พาร์ธผิด หรือ ติด permission
|
|
|
|
|
Date :
2012-07-26 14:34:18 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมเช็คไฟล์office แบบนี้ถูกไหมครับ
Code (PHP)
if((($_FILES["upfile"]["type"]=="document/doc")||($_FILES["upfile"]["type"]=="document/docx")||($_FILES["upfile"]["type"]=="document/xls")||($_FILES["upfile"]["type"]=="document/xlsx")))
|
|
|
|
|
Date :
2012-07-26 15:41:15 |
By :
l3alLkisS |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|