<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <script src="http://code.jquery.com/jquery-latest.js"></script> <script language="JavaScript"> function showPreview(ele) { $('#imgAvatar').attr('src', ele.value); // for IE if (ele.files && ele.files[0]) { var reader = new FileReader(); reader.onload = function (e) { $('#imgAvatar').attr('src', e.target.result); } reader.readAsDataURL(ele.files[0]); } } </script> </head> <body> <form id="form1" name="form1" method="post" action=""> <table width="700" border="0" align="center" cellpadding="0" cellspacing="0" id="dataTable2"> <?php for($i=1;$i<=5;$i++) { ?> <tr> <td width="3%"> </td> <td width="21%" align="center" valign="top"><img src="add.png" width="171" border="0" id="imgAvatar"/></td> <td width="2%" align="center"> </td> <td width="74%" align="left"><textarea name="detail[]" cols="45" rows="5" class="ta3" id="detail[]" placeholder="ระบุรายละเอียดด้วยครับ"></textarea> <table width="100" border="0" cellspacing="0" cellpadding="0"> <tr> <td> </td> </tr> </table> <input type="file" name="attach[]" id="attach" OnChange="showPreview(this)" /> <table width="100" border="0" cellspacing="0" cellpadding="0"> <tr> <td> </td> </tr> </table></td> </tr> <?php } ?> </table> </form> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <script src="http://code.jquery.com/jquery-latest.js"></script> <script language="JavaScript"> function showPreview(img,ele) { $('#'+img).attr('src', ele.value); // for IE if (ele.files && ele.files[0]) { var reader = new FileReader(); reader.onload = function (e) { $('#'+img).attr('src', e.target.result); } reader.readAsDataURL(ele.files[0]); } } </script> </head> <body> <form id="form1" name="form1" method="post" action=""> <table width="700" border="0" align="center" cellpadding="0" cellspacing="0" id="dataTable2"> <?php for($i=1;$i<=5;$i++) { ?> <tr> <td width="3%"> </td> <td width="21%" align="center" valign="top"><img src="add.png" width="171" border="0" id="imgAvatar<?php echo $i;?>"/></td> <td width="2%" align="center"> </td> <td width="74%" align="left"><textarea name="detail[]" cols="45" rows="5" class="ta3" id="detail[]" placeholder="ระบุรายละเอียดด้วยครับ"></textarea> <table width="100" border="0" cellspacing="0" cellpadding="0"> <tr> <td> </td> </tr> </table> <input type="file" name="attach[]" id="attach" OnChange="showPreview('imgAvatar<?php echo $i;?>',this)" /> <table width="100" border="0" cellspacing="0" cellpadding="0"> <tr> <td> </td> </tr> </table></td> </tr> <?php } ?> </table> </form> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง