|
|
|
มันerror บรรทัดที่ 12และ 32 ครับช่วยแก้หน่อยครับ , ตรวจสอบประเภทไฟล์ , กรุณาอัพโหลดเฉพาะไฟล์ *.JPEG,*.JPG,*.GIF |
|
|
|
|
|
|
|
Code (PHP)
<?
if(isset($_POST['Submit'])){
$username = trim($_POST['username']);
$password = trim($_POST['password']);
$emp_name = $_POST['emp_name'];
$emp_surname = $_POST['emp_surname'];
$emp_addr = $_POST['emp_addr'];
$emp_phone = $_POST['emp_phone'];
$emp_email = $_POST['emp_email'];
echo $fetch_id =mysql_fetch_array(mysql_query("select max(emp_id) as id from tb_employee"));
echo $emp_id = sprintf("%'03d",$fetch_id['id']+1);
if( is_uploaded_file($_FILES['photo']['tmp_name']) ){
$name = $_FILES['photo']['name'];
$tmp_name = $_FILES['photo']['tmp_name'];
$size = $_FILES['photo']['size'];
$type = $_FILES['photo']['type'];
//ตรวจสอบประเภทไฟล์ $type
if( $type=="image/jpeg" ) $lastindex = ".jpeg";
else if( $type=="image/gif" ) $lastindex = ".gif";
else if( $type=="image/pjpeg" ) $lastindex = ".jpg";
else{
echo "กรุณาอัพโหลดเฉพาะไฟล์ *.JPEG,*.JPG,*.GIF ";
echo "<a href='่javascript:history.back();'>กลับไป</a>";
exit;
}
if($size>$maxsize){
echo "กรุณาอัพโหลดไฟล์ไม่เกิน ".$func->sizeFormat($maxsize);
echo "<a href='่javascript:history.back();'>กลับไป</a>";
exit;
}
$file_name = $phodir.$emp_id.$lastindex; //ตำแหน่งไฟล์ที่จะอัพโหลด
#echo "$name <br>$tmp_name <br>$size <br>$type<br>$file_name"; exit;
@copy($tmp_name,$file_name);
$images = "$file_name";
$height = 150; //กำหนดขนาดความสูง
$size = getimagesize($images);
$width = round($height*$size[0]/$size[1]); //ขนาดความกว้่างคำนวนเพื่อความสมส่วนของรูป
if($width>200) $width = 200;
if($size[2] == 1) {
$images_orig = imagecreatefromgif($images); //resize รูปประเภท GIF
} else if($size[2] == 2) {
$images_orig = imagecreatefromjpeg($images); //resize รูปประเภท JPEG
}
$photoX = imagesx($images_orig);
$photoY = imagesy($images_orig);
$images_fin = imagecreatetruecolor($width, $height);
imagecopyresampled($images_fin, $images_orig, 0, 0, 0, 0, $width+1, $height+1, $photoX, $photoY);
imagejpeg($images_fin, $images); //ชื่อไฟล์ใหม่
imagedestroy($images_orig);
imagedestroy($images_fin);
}// if(is_uploaded)
$password = sha1($password);
$sql_insert = "insert into tb_employee values('$emp_id'
,'$username','$password','$emp_name','$emp_surname','$emp_addr','$emp_phone',
'$emp_email','$lastindex','')";
$result = mysql_query($sql_insert)or die(mysql_error());
echo "บันทึกข้อมูลเรียบร้อยแล้วครับ";
echo "<meta http-equiv='refresh' content='3;URL=?module=user&pages=show_emp'>";
exit;
}
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ข้อมูลพนักงาน</title>
<style type="text/css">
.error{ color:#FF0000; font-size:14px; }
</style>
<script src="js/validation.js"></script>
<script>
function check_form(){
var obj = document.frm_add_emp;
for(i=1;i<=8;i++)
div_show("error"+i,"");
if(obj.username.value==""){ div_show("error1","กรุณากรอกชื่อใช้งานด้วยนะครับ"); obj.username.focus(); return false; }
if(obj.username.value.length<5){ div_show("error1","กรุณากรอกชื่อใช้งาน 5 ตัวขึ้นไป"); obj.username.focus(); return false; }
if(obj.password.value==""){ div_show("error2","กรุณากรอกรหัสผ่านด้วยนะครับ"); obj.password.focus(); return false; }
if(obj.password.value.length<5){ div_show("error2","กรุณากรอกชื่อใช้งานด้วยนะครับ"); obj.password.focus(); return false; }
if(obj.password.value!=obj.repassword.value){ div_show("error3","กรุณากรอกยืนยันรหัสผ่านให้ตรงกันด้วยนะครับ"); obj.repassword.focus(); return false; }
if(obj.emp_name.value==""){ div_show("error4","กรุณากรอกชื่อด้วยนะครับ"); obj.emp_name.focus(); return false; }
if(obj.emp_surname.value==""){ div_show("error5","กรุณากรอกนามสกุลด้วยนะครับ"); obj.emp_surname.focus(); return false; }
if(obj.emp_addr.value==""){ div_show("error6","กรุณากรอกที่อยู่ด้วยนะครับ"); obj.emp_addr.focus(); return false; }
if(obj.emp_email.value==""){ div_show("error7","กรุณากรอกอีเมล์ด้วยนะครับ"); obj.emp_email.focus(); return false; }
if(obj.emp_phone.value==""){ div_show("error8","กรุณากรอกเบอร์โทรด้วยนะครับ"); obj.emp_phone.focus(); return false; }
else return true;
}
</script>
<form action="" method="post" enctype="multipart/form-data" name="frm_add_emp" id="frm_add_emp" onsubmit="return check_form(this)" autocomplete="off" >
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25" colspan="3">แบบฟอร์มเพิ่มข้อมูลพนักงาน</td>
</tr>
<tr>
<td height="35" align="right">ชื่อใช้งาน</td>
<td height="25"> </td>
<td height="25"><input name="username" type="text" id="username" size="10" onKeyPress="check_en_num(event);">
<div id="error1" class="error"></div>
</td>
</tr>
<tr>
<td height="35" align="right">รหัสผ่าน</td>
<td height="25"> </td>
<td height="25"><input name="password" type="password" id="password" size="10" onKeyPress="check_en_num(event);">
<div id="error2" class="error"></div></td>
</tr>
<tr>
<td height="35" align="right">ยืนยันรหัสผ่าน</td>
<td height="25"> </td>
<td height="25"><input name="repassword" type="password" id="repassword" size="10" onKeyPress="check_en_num(event);">
<div id="error3" class="error"></div></td>
</tr>
<tr>
<td width="32%" height="35" align="right">ชื่อ (ไทย) </td>
<td height="25"> </td>
<td width="68%" height="25">
<input name="emp_name" onkeypress="check_th_only(event)" type="text" id="emp_name" size="20" maxlength="40" /><div id="error4" class="error"></div></td>
</tr>
<tr>
<td height="35" align="right">นามสกุล (ไทย) </td>
<td height="25"> </td>
<td height="25">
<input name="emp_surname" onkeypress="check_th_only(event);" type="text" id="emp_surname" size="20" maxlength="40" /><div id="error5" class="error"></div></td>
</tr>
<tr>
<td height="35" align="right">ที่อยู่</td>
<td height="25"> </td>
<td height="25"><input name="emp_addr" type="text" id="emp_addr" value="" size="60" maxlength="255"> <div id="error6" class="error"></div></td>
</tr>
<tr>
<td height="35" align="right">อีเมล์ </td>
<td height="25"> </td>
<td height="25">
<input name="emp_email" type="text" id="emp_email" size="40" maxlength="50" onKeyPress="check_en_email(event);" /> <div id="error7" class="error"></div></td>
</tr>
<tr>
<td height="35" align="right">เบอร์โทร</td>
<td height="25"> </td>
<td height="25">
<input name="emp_phone" onkeypress="check_num_only(event);" type="text" id="emp_phone" size="10" maxlength="10" /> <div id="error8" class="error"></div></td>
</tr>
<tr>
<td height="35" align="right">รูปภาพส่วนตัว</td>
<td height="25"> </td>
<td height="25"><input name="photo" type="file" id="photo" /></td>
</tr>
<tr>
<td height="25" colspan="3" align="center"><input type="submit" name="Submit" value=" บันทึกข้อมูล " />
<input type="reset" name="Submit2" value=" ค่าเริ่มต้น " />
<input type="button" onClick="javascript:history.back();" name="Submit" value=" ยกเลิก " /></td>
</tr>
</table>
</form>
Tag : - - - -
|
|
|
|
|
|
Date :
2010-03-07 15:46:33 |
By :
jobjab_bcis |
View :
852 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[marquee][/marquee][font=Verdana][/font][i][/i]
|
|
|
|
|
Date :
2010-04-27 21:27:46 |
By :
saendee Emo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|