<html> <head> <title></title> </head> <body> <script language="javascript"> function fncSubmit() { if(document.form1.txtAlbumName.value == "") { alert('Please input Input 1'); document.form1.txtAlbumName.focus(); return false; } if(document.form1.filAlbumShot.value == "") { alert('Please input Input 2'); document.form1.filAlbumShot.focus(); return false; } document.form1.submit(); } </script> <form name="form1" method="post" action="save_album.php" onSubmit="JavaScript:return fncSubmit();" > Album Name : <input type="text" name="txtAlbumName" maxlength="60"><br> Album Shot : <input type="file" name="filAlbumShot"><br> <input name="btnSubmit" type="submit" value="Submit"> </form> <a href="view_album.php">View Album </a> </body> </html>
<html> <head> <title></title> </head> <body> <script language="javascript"> function fncSubmit() { if(document.getElementById("txtAlbumName").value == "") { alert('Please input Input 1'); document.getElementById("txtAlbumName").focus(); return false; } if(document.getElementById("filAlbumShot").value == "") { alert('Please input Input 2'); document.getElementById("filAlbumShot").focus(); return false; } document.form1.submit(); } </script> <form name="form1" method="post" action="save_album.php" onSubmit="JavaScript:return fncSubmit();" > Album Name : <input type="text" name="txtAlbumName" id="txtAlbumName" maxlength="60"><br> Album Shot : <input type="file" name="filAlbumShot" id="filAlbumShot"><br> <input name="btnSubmit" type="submit" value="Submit"> </form> <a href="view_album.php">View Album </a> </body> </html>
<html> <head> <title></title> </head> <body> <script language="javascript"> function fncSubmit1() { if(document.getElementById("txtGalleryName").value == "") { alert('Please input Gallery Name'); document.getElementById("txtGalleryName").focus(); return false; } if(document.getElementById("filGalleryShot").value == "") { alert('Please input Gallery Shot'); document.getElementById("filGalleryShot").focus(); return false; } else { var file=document.getElementById("filGalleryShot").value; var patt=/(.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> <form name="form1" method="post" action="save_gallery.php?AlbumID=<?=$_GET["AlbumID"];?>" enctype="multipart/form-data"onSubmit="JavaScript:return fncSubmit1();" > Album Name : <?=$_GET["AlbumName"];?><br> Gallery Name : <input type="text" name="txtGalleryName" maxlength="100"><br> Gallery Shot : <input type="file" name="filGalleryShot"><br> <input name="btnSubmit" type="submit" value="Submit"> </form> <a href="upload_gallery.php?AlbumID=<?=$_GET["AlbumID"];?>">View Gallery</a> </body> </html>
Gallery Name : <input type="text" name="txtGalleryName" maxlength="100" id="txtGalleryName" ><br> Gallery Shot : <input type="file" name="filGalleryShot" id="filGalleryShot" ><br>>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง