web 2.0

How to use PHP & SQL Server (mssql) Random Rows Data

How to use PHP & SQL Server (mssql) Random Rows Data Learn / tutorial php programming how to using  PHP random data from SQL Server table.

ShotDev Focus:
- PHP & SQL Server random data from table.

Example

php_sqlserver_random.php

  1. <html>  
  2. <head>  
  3. <title>ShotDev.Com Tutorial</title>  
  4. </head>  
  5. <body>  
  6. <?  
  7. $objConnect = mssql_connect("localhost","sa","");  
  8. $objDB = mssql_select_db("mydatabase");  
  9. $strSQL = "SELECT TOP 2 * FROM customer ORDER BY NEWID()";  
  10. $objQuery = mssql_query($strSQLor die ("Error Query [".$strSQL."]");  
  11. ?>  
  12. <table width="600" border="1">  
  13. <tr>  
  14. <th width="91"> <div align="center">CustomerID </div></th>  
  15. <th width="98"> <div align="center">Name </div></th>  
  16. <th width="198"> <div align="center">Email </div></th>  
  17. <th width="97"> <div align="center">CountryCode </div></th>  
  18. <th width="59"> <div align="center">Budget </div></th>  
  19. <th width="71"> <div align="center">Used </div></th>  
  20. </tr>  
  21. <?  
  22. while($objResult = mssql_fetch_array($objQuery))  
  23. {  
  24. ?>  
  25. <tr>  
  26. <td><div align="center"><?=$objResult["CustomerID"];?></div></td>  
  27. <td><?=$objResult["Name"];?></td>  
  28. <td><?=$objResult["Email"];?></td>  
  29. <td><div align="center"><?=$objResult["CountryCode"];?></div></td>  
  30. <td align="right"><?=$objResult["Budget"];?></td>  
  31. <td align="right"><?=$objResult["Used"];?></td>  
  32. </tr>  
  33. <?  
  34. }  
  35. ?>  
  36. </table>  
  37. <?  
  38. mssql_close($objConnect);  
  39. ?>  
  40. </body>  
  41. </html>  

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

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

Screenshot

PHP & SQL Server (mssql) Random Data
.
.
.

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 ...

Leave a Reply

You must be logged in to post a comment.