<html> <head> <title>ThaiCreate.Com PHP & SQL Server Tutorial</title> </head> <body> <? $servername = 'kawakawa'; //กำหนดชื่อ server $databasename = 'WebApp'; //กำหนดชื่อ database บน Microsoft SQL $user = 'sa'; //กำหนดชื่อ user name ที่จะ connect database $pass = 'hiqit'; //กำหนด password ที่จะ connect ไปที่ database $connection_string = "DRIVER={SQL Server};SERVER=$servername;DATABASE=$databasename;AutoTranslate=no"; //เป็นการกำหนด connection string ในการ connect ODBC $cid = odbc_connect($connection_string,$user, $pass); $query = "SELECT * FROM Product "; $result = odbc_exec($cid,$query); $Num_Row = 0; while(odbc_fetch_row($result))$Num_Rows++; // Count Record &Per_Page = 1; &Page = &_GET["Page"]; if(!$_GET["Page"]) { $Page=1; } $Prev_Page = $Page-1; $Next_Page = $Page+1; $Page_Start = (($Per_Page*$Page)-$Per_Page)+1; if($Num_Rows<=$Per_Page) { $Num_Pages =1; } else if(($Num_Rows % $Per_Page)==0) { $Num_Pages =($Num_Rows/$Per_Page) ; } else { $Num_Pages =($Num_Rows/$Per_Page)+1; $Num_Pages = (int)$Num_Pages; } $Page_End = $Per_Page * $Page; IF ($Page_End > $Num_Rows) { $Page_End = $Num_Rows; } ?> <table width="800" border="1" cellspacing="0" cellpadding="0"> <tr> <th width="80"> <div align="center">No_ </div></th> <th width="198"> <div align="center">Description </div></th> <th width="98"> <div align="center">Base Unit of Measure </div></th> <th width="97"> <div align="center">Inventory Posting Group </div></th> <th width="198"> <div align="center">Gross Weight </div></th> <th width="97"> <div align="center">Qty_Measure </div></th> <th width="200"> <div align="center">Brand </div></th> <th width="200"> <div align="center">Image </div></th> </tr> <? for($i=$Page_Start;$i<=$Page_End;$i++) { $objresult = odbc_fetch_array($result,$i); ?> <tr> <td><?=$objresult["No_"];?></div></td> <td><?=$objresult["Description"];?></td> <td><?=$objresult["Base Unit of Measure"];?></td> <td><?=$objresult["Inventory Posting Group"];?></td> <td><?=$objresult["Gross Weight"];?></td> <td><?=$objresult["Qty_Measure"];?></td> <td><?=$objresult["Brand"];?></td> <td><img src="<?=$objresult["image_path"];?>" name="Image1"> </tr> <? } ?> </table> <br> Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page : <? if($Prev_Page) { echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> "; } for($i=1; $i<=$Num_Pages; $i++){ if($i != $Page) { echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]"; } else { echo "<b> $i </b>"; } } if($Page!=$Num_Pages) { echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>Next>></a> "; } //odbc_connect($cid); ?> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง