<form class="form-upload" action="upload_action.php" method="post" enctype="multipart/form-data" target="iframe2" onsubmit="top.document.getElementById('upload_status').innerHTML='กำลัง upload';"> <span id="upload_status"></span> <input class="file" name="image2" type="file" /> <input type="submit" name="submit" value="upload" /> <iframe name="iframe2" src="iframe.php"></iframe> </form>
<?php //save file upload ?> <script type="text/javascript"> top.document.getElementById('upload_status').innerHTML = "upload เรียบร้อยแล้ว"; </script>
<?php if (file_exists('img/'.$_FILES['image2']['name'])){ ?> <script type="text/javascript"> top.document.getElementById('upload_status').innerHTML = "ชื่อไฟล์ซ้ำ"; </script> <?php }else{ move_uploaded_file($_FILES['image2']['tmp_name'],'img/'.$_FILES['image2']['name']); ?> <script type="text/javascript"> top.document.getElementById('upload_status').innerHTML = "upload เรียบร้อยแล้ว"; </script> <?php } ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง