<html > <body> <p> <head> <title>Upload xls file and Convert to HTML</title> <style> fieldset { width: 50%; margin: 15px 0px 25px 0px; padding: 15px; } legend { font-weight: bold; } .button { text-align: right; } .button input { font-weight: bold; } </style> <body> select .xls file for Upload and Convert to HTML <fieldset> <form name="form" enctype="multipart/form-data" method="post" action="upload/upload.php" /> <input name="my_field" type="file" id="my_field" value="" size="32" /> <input name="sheet" type="text" id="sheet" value="1" size="3" /> <span class="button"> sheet <input name="action" type="hidden" id="action" value="simple" /> <input name="Submit" type="submit" id="Submit" value="upload" /> </span> </form> </fieldset> </body> </html></p> <p> </p> </p> <p> </p> </body> </html>
<html > <head> <title>Upload xls and Convert to HTML</title> <style> fieldset { width: 50%; margin: 15px 0px 25px 0px; padding: 15px; } legend { font-weight: bold; } fieldset img { float: right; } fieldset p { font-size: 70%; font-style: italic; } .button { text-align: right; } .button input { font-weight: bold; } </style> <body> Xls To HTML You Can Convert .XLS (Microsoft Excel File ) To HTML Online <fieldset> <legend>file uploaded with success</legend> <p>24.5KB</p> Your file.. <a href="test/Form.xls">Form.xls</a></fieldset><p> <a href="../xls-to-html.php">Upload New</a></p><pre></pre>sheet == 1 <br/> table 1 <br/><table><tr><td></td></tr><tr><td>ที่</td><td>ชื่อ - สกุล</td> <td> </td> <td></td> <td>TOR</td> <td></td><td></td><td></td><td></td></tr> <tr><td></td><td></td><td>ภาระงานประจำ</td><td>ระบบงาน</td><td>วันที่เริ่มพัฒนา</td> <td>วันที่เสร็จสิ้น</td><td></td><td></td><td></td></tr><tr><td>1</td> <td>lydbsoUt หวันสกุล</td> <td>ประโยชน์ที่ได้รับ</td><td>ตรวจสอบข้อมูล</td> <td>05-Sep-2005</td><td>19-Sep-2005</td><td></td><td></td><td></td></tr> <tr><td></td><td></td><td></td><td></td><td></td><td></td> <td></td><td></td><td></td> <td></td></tr></table><hr> <!-- <td>มีอีกเยอะตามจำนวนแถวคอลัมภ์ของExcelค่ะ ก็เลยลบออกไปบางส่วน --> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ </p> </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> <link rel='stylesheet' href='template.css' type='text/css'> <meta http-equiv="Content-Type" content="text/html; charset=tis-620" /> <title>Untitled Document</title> <style type="text/css"> <!-- .style1 {color: #FF0000} --> </style> </head> <body> <table width="753" border="0" align="center"> <tr> <td width="747"><div class="header"></div></td> </tr> <tr> <td height="450"><div class="center"> <div class="h1" align="right"><a href="loginP.html">Logout</a></div> <p> </p> <p align="center"> <img src="pic/02.jpg" width="194" height="89" /></p> <p align="center" > <a href="main.php"> <img src="pic/undo.gif" width="33" height="27" border="0" /></a>Back</p> <table width="328" border="0" align="center"> <tr> <td width="126" height="67" align="left"> เลือกไฟล ์: </td> <td width="218" align="left" valign="middle"> <form name="form1" method="post" action="uploadToMySQL.php" enctype="multipart/form-data"> <input type="file" name="filUpload"><br> <input name="btnSubmit" type="submit" value="Submit"> </form> </td> </tr> </table> <p align="center" class="style1"> *<em>หมายเหต</em> ุขอให้ผ ู้ ใช้ทำกา รอ ัพโหลดไ ฟล ์เป็นชื ่อ งานที่ท ำเ พื่อควา มส ะดวก </p> <p align="center" class="style1"> </p> </div> </td> </tr> <tr> <td height="134"><div class="footer"><br />:: 617;หาวิท ยาล ัยสงขล านค รินทร์ วิทยาเ ขตป ัตตานี:: <br /> 181 หมู่ท ี่ 6 ถนนเจร ิญ ประดิษ ฐ์ ตำบลรู สะ มิแล อำเภอเ มือง จังหว ัดป ัตตาน ี 94000 <br /> โทร. 0 7331 3928 - 45 <br /> webmaster : @bunga.pn.psu.ac.th<p></div></td> </tr> </table> <p> </p> <p align="center"> </p> <p align="center"> </p> <p align="center"> </p> <p align="center"> </p> <p align="center"> </p> <p align="center"> </p> </body> </html>
<html> <head> <title>Upload To MySQL</title> </head> <body> <? if(copy($_FILES["filUpload"]["tmp_name"],"myfile/".$_FILES["filUpload"]["name"])) { echo "Copy/Upload Complete<br>"; //*** Insert Record ***// include'connectDB.php'; $strSQL = "INSERT INTO file "; $strSQL .="(FilesName) VALUES ('".$_FILES["filUpload"]["name"]."')"; $objQuery = mysql_query($strSQL); } ?> <a href="uploadToMySQL2.php">View files</a> </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> <title>View File</title> </head> <body> <? include'connectDB.php'; $strSQL = "SELECT * FROM file"; $objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]"); ?> <table width="200" border="1"> <tr> <th width="50"> <div align="center">Files ID </div></th> <th width="150"> <div align="center">Files Name </div></th> </tr> <? while($objResult = mysql_fetch_array($objQuery)) { ?> <tr> <td> <div align="center"><?=$objResult["FilesID"];?></div> </td> <td> <center><a href="myfile/<?=$objResult["FilesName"];?>"> <?=$objResult["FilesName"];?></a></center></td> </tr> <? } ?> </table> <? mysql_close($objConnect); ?> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง