<html> <head> <title>ThaiCreate.Com PHP(COM) Excel.Application Tutorial</title> </head> <body> <?php //*** Get Document Path ***// $strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/myphp $OpenFile = "MyXls/MyExcelDB.xls"; //*** Connect to ADO ***// $strConn = new COM("ADODB.Connection"); $strConn->Open("DRIVER={Microsoft Excel Driver (*.xls)}; IMEX=1; HDR=NO; Excel 8.0; DBQ=".$strPath."/".$OpenFile.";"); // DBQ=realpath($OpenFile) //*** Select Sheet ***// $strSQL = "SELECT * FROM [Sheet1$]"; $objRec = $strConn->Execute($strSQL); ?> <table width="420" border="1"> <tr> <td>Column1</td> <td>Column2</td> <td>Column3</td> <td>Column4</td> </tr> <?php While (!$objRec->EOF) { ?> <tr> <td><?php echo $objRec->Fields["Column1"]->Value;?></td> <!-- $objRec->Fields(0)->Value or $objRec->Fields("Column1")->Value --> <td><?php echo $objRec->Fields["Column2"]->Value;?></td> <td><?php echo $objRec->Fields["Column3"]->Value;?></td> <td><?php echo $objRec->Fields["Column4"]->Value;?></td> </tr> <?php $objRec->MoveNext(); } ?> </table> <?php $objRec->Close(); $strConn->Close(); $strConn = null; ?> </body> </html>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท