web 2.0

How to use PHP & SQL Server (mssql) Search Rows Data and Paging/Pagination

How to use PHP & SQL Server (mssql) Search Rows Data and Paging/Pagination Learn / tutorial php programming how to using  PHP search data from SQL Server table and display result of multiple pages to pagination.

ShotDev Focus:
- PHP & SQL Server search data and pagination.

Example

php_sqlserver_search_pagination.php

  1. <html>  
  2. <head>  
  3. <title>ShotDev.Com Tutorial</title>  
  4. </head>  
  5. <body>  
  6. <body>  
  7. <form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">  
  8. <table width="599" border="1">  
  9. <tr>  
  10. <th>Keyword  
  11. <input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">  
  12. <input type="submit" value="Search"></th>  
  13. </tr>  
  14. </table>  
  15. </form>  
  16. <?  
  17. if($_GET["txtKeyword"] != "")  
  18. {  
  19. $objConnect = mssql_connect("localhost","sa","");  
  20. $objDB = mssql_select_db("mydatabase");  
  21. // Search By Name or Email  
  22. $strSQL = "SELECT  * FROM customer  WHERE (Name LIKE '%".$_GET["txtKeyword"]."%' or Email LIKE '%".$_GET["txtKeyword"]."%' )  ";  
  23. $objQuery = mssql_query($strSQLor die ("Error Query [".$strSQL."]");  
  24. $Num_Rows = mssql_num_rows($objQuery);  
  25.   
  26. $Per_Page = 2;   // Per Page  
  27.   
  28. $Page = $_GET["Page"];  
  29. if(!$_GET["Page"])  
  30. {  
  31. $Page=1;  
  32. }  
  33.   
  34. $Prev_Page = $Page-1;  
  35. $Next_Page = $Page+1;  
  36.   
  37. $Page_Start = (($Per_Page*$Page)-$Per_Page);  
  38. if($Num_Rows<=$Per_Page)  
  39. {  
  40. $Num_Pages =1;  
  41. }  
  42. else if(($Num_Rows % $Per_Page)==0)  
  43. {  
  44. $Num_Pages =($Num_Rows/$Per_Page) ;  
  45. }  
  46. else  
  47. {  
  48. $Num_Pages =($Num_Rows/$Per_Page)+1;  
  49. $Num_Pages = (int)$Num_Pages;  
  50. }  
  51. $Page_End = $Per_Page * $Page;  
  52. IF ($Page_End > $Num_Rows)  
  53. {  
  54. $Page_End = $Num_Rows;  
  55. }  
  56.   
  57. ?>  
  58. <table width="600" border="1">  
  59. <tr>  
  60. <th width="91"> <div align="center">CustomerID </div></th>  
  61. <th width="98"> <div align="center">Name </div></th>  
  62. <th width="198"> <div align="center">Email </div></th>  
  63. <th width="97"> <div align="center">CountryCode </div></th>  
  64. <th width="59"> <div align="center">Budget </div></th>  
  65. <th width="71"> <div align="center">Used </div></th>  
  66. </tr>  
  67. <?  
  68. for($i=$Page_Start;$i<$Page_End;$i++)  
  69. {  
  70. ?>  
  71. <tr>  
  72. <td><div align="center"><?=mssql_result($objQuery,$i,"CustomerID");?></div></td>  
  73. <td><?=mssql_result($objQuery,$i,"Name");?></td>  
  74. <td><?=mssql_result($objQuery,$i,"Email");?></td>  
  75. <td><div align="center"><?=mssql_result($objQuery,$i,"CountryCode");?></div></td>  
  76. <td align="right"><?=mssql_result($objQuery,$i,"Budget");?></td>  
  77. <td align="right"><?=mssql_result($objQuery,$i,"Used");?></td>  
  78. </tr>  
  79. <?  
  80. }  
  81. ?>  
  82. </table>  
  83. <br>  
  84. Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :  
  85. <?  
  86. if($Prev_Page)  
  87. {  
  88. echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&txtKeyword=$_GET[txtKeyword]'><< Back</a> ";  
  89. }  
  90.   
  91. for($i=1; $i<=$Num_Pages$i++){  
  92. if($i != $Page)  
  93. {  
  94. echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&txtKeyword=$_GET[txtKeyword]'>$i</a> ]";  
  95. }  
  96. else  
  97. {  
  98. echo "<b> $i </b>";  
  99. }  
  100. }  
  101. if($Page!=$Num_Pages)  
  102. {  
  103. echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&txtKeyword=$_GET[txtKeyword]'>Next>></a> ";  
  104. }  
  105.   
  106. mssql_close($objConnect);  
  107. }  
  108. ?>  
  109. </body>  
  110. </html>  

Create a php file and save to path root-path/myphp/

Run
http://localhost/myphp/php_sqlserver_search_pagination.php

Screenshot

PHP & SQL Server (mssql) Search Data and Paging/Pagination
.
.
.

Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

One Response to “How to use PHP & SQL Server (mssql) Search Rows Data and Paging/Pagination”

  1. 2crystal…

Leave a Reply

You must be logged in to post a comment.