<form action="img4.php" method="post" name="form1" enctype="multipart/form-data"> <table width="200"> <tr> <td><div align="center" class="style1">อัพโหลดภาพ</div></td> </tr> <tr> <td> </td> </tr> <tr> <td><input type="file" name="fileUpload1" /> <input type="file" name="fileUpload2" /> <input type="file" name="fileUpload3" /> <input type="file" name="fileUpload4" /></td> </tr> <tr> <td><div align="center"> <input name="hdnLine" type="hidden" value="4" /> <input name="btnSubmit" type="submit" value="upload" /> </div></td> </tr> </table> </form>
<!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=iso-8859-1" /> <title>Untitled Document</title> <link media="screen" rel="stylesheet" href="colorbox.css" /> <script src="js/jquery-1.6.1.min.js" type="text/javascript"></script> <link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen" charset="utf-8" /> <script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script> <style type="text/css" media="screen"> body { font: 62.5%/1.2 Arial, Verdana, Sans-Serif; padding: 0 20px; } </style> <script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $("area[rel^='prettyPhoto']").prettyPhoto(); $("a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'light_square',slideshow:1000}); $("a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'fast',slideshow:1000, hideflash: true}); }); </script> </head> <body> <? mysql_connect("localhost","root","admin") or die (mysql_error()); mysql_select_db("test2"); mysql_query("SET NAMES UTF8"); for($i=1;$i<=(int)($_POST["hdnLine"]);$i++) { if($_FILES["fileUpload".$i]["name"] != "") { if(move_uploaded_file($_FILES["fileUpload".$i]["tmp_name"],"myfile/".$_FILES["fileUpload".$i]["name"])) { $strSQL = "INSERT INTO gallery "; $strSQL .="(Picture) VALUES ('".$_FILES["fileUpload".$i]["name"]."')"; mysql_query($strSQL); } } } ?> <? $strSQL2 = "SELECT * FROM gallery ORDER BY picid ASC "; $objQuery2 = mysql_query($strSQL2) or die ("Error Query [".$strSQL2."]"); echo"<table align=\"center\" border=\"1\" cellspacing=\"1\" cellpadding=\"1\"><tr>"; $intRows = 0; while($objResult2 = mysql_fetch_array($objQuery2)) { echo "<td>"; $intRows++; ?> <center> <p><a href="myfile/<?=$objResult2["Picture"];?>" rel="prettyPhoto[gallery]" title="<?=$objResult2["Picture"];?>"><img src="myfile/<?=$objResult2["Picture"];?>" width="200" ></a></p> <p><br> <br> </p> </center> <? echo"</td>"; if(($intRows)%3==0) { echo"</tr>"; } } echo"</tr></table>"; mysql_close(); ?> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง