|
|
|
ผมจะทำอัพโหลดรูปภาพ php จะต้องออกแบบยังไงเหรอครับ....มันเป็นฟอร์มรับสมัครงานครับ |
|
|
|
|
|
|
|
ตัวอย่าง codeผม
Code (PHP)
<html>
<head>
<title></title>
<meta http-equiv=Content-Type content="text/html; charset=tis-620">
</head>
<body>
<script language="javascript">
function fncSubmit()
{
if(document.getElementById("txtAlbumName").value == "")
{
alert('Please input Album Name');
document.getElementById("txtAlbumName").focus();
return false;
}
if(document.getElementById("filAlbumShot").value == "")
{
alert('Please input Album Shot');
document.getElementById("filAlbumShot").focus();
return false;
}
else
{
var file=document.getElementById("filAlbumShot").value;
var patt=/(.gif|.jpg|.png|.GIF|.JPG|.PNG)/;
var result=patt.test(file);
if(!result)
{
alert('file type is wrong (jpg,png,gif only)');
}
return result;
}
document.form1.submit();
}
</script>
<h1>Create Album</h1><br>
<form name="form1" method="post" action="save_album.php" enctype="multipart/form-data" onSubmit="JavaScript:return fncSubmit();" >
<table>
<tr><td>Album Name : <font color="#FF0000">*</font></td><td><input type="text" name="txtAlbumName" id="txtAlbumName" maxlength="50"></td></tr>
<tr><td>Album Shot : <font color="#FF0000">*</font></td><td><input type="file" name="filAlbumShot" id="filAlbumShot">(.jpg .gif .png only)</td></tr>
<tr><td><input name="btnSubmit" type="submit" value="Upload"></td></tr>
</table>
</form>
<a href="view_album.php">View Album </a>
</body>
</html>
|
|
|
|
|
Date :
2012-09-07 10:01:04 |
By :
sambrazil |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมว่าลองไปลองเล่นระบบสมาชิกพวกรับสมัครงานดูดีกว่าครับ เผื่อจะได้ไอเดียมาออกแบบสวยๆ
|
|
|
|
|
Date :
2012-09-07 10:02:06 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใครรับทำบ้างครับ พอดีว่ารีบเหมือนกัน ผมสงสัยว่า ถ้าอัพรูปแล้วมันก็ไปเก็บในแฟ้มแล้วเวลาจากเรียกมาแสดงเป็นฟอร์มเลย มันจะเรียกจากอะไร คือเวลาเก็บภาพจะเก็บเป็น type อะไร เหรอครับ
ใครรับทำหรือทำเป็นช่วยผมทีนะครับ งานนี้กลัวทำไม่ทันจัง ผมทำงานด้านคอมครับ humcpeแอทhotmail.com
|
|
|
|
|
Date :
2012-09-07 11:24:18 |
By :
clashhum |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<script language="javascript">
function fncSubmit()
{
if(document.getElementById("uploadfile").value == "")
{
alert('Please input Album Shot');
document.getElementById("uploadfile").focus();
return false;
}
else
{
var file=document.getElementById("uploadfile").value; //เช็คไฟล์จ้า
var patt=/(.jpg|.JPG|)/; // .jpgเท่านั้น ตัวเล็กตัวไหย่มีผลนะ ถ้าเอาไฟล์รูปภาพทั้งหมดก้อ var patt=/(.gif|.jpg|.png|.GIF|.JPG|.PNG)/;
var result=patt.test(file);
if(!result)//ถ้าไม่ไช่ไฟล์jpg เตือน......
{
alert('file type is wrong (jpg)');
}
return result;
}
document.form1.submit();
}
</script>
<form enctype="multipart/form-data" action="upload.php" method="post">
เลือกแฟ้มเอกสารที่จะส่ง :
<input type="file" name="uploadfile" id="uploadfile">
<input type="submit" value="ส่งได้">
</form>
|
|
|
|
|
Date :
2012-09-07 11:49:28 |
By :
sambrazil |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|