web 2.0

How to use PHP & SQL Server (mssql) Get Field Name

How to use PHP & SQL Server (mssql) Get Field Name Learn / tutorial php programming how to using  PHP get table field name from SQL Server database

ShotDev Focus:
- PHP & SQL Server get field name from table.

Example

php_sqlserver_list_table.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 * FROM customer";  
  10. $objQuery = mssql_query($strSQLor die ("Error Query [".$strSQL."]");  
  11. $intNumField = mssql_num_fields($objQuery);  
  12. $i = 0;  
  13. echo "<b>Table customer have $intNumField Fields.</b><br>";  
  14. for($i=1;$i<$intNumField;$i++)  
  15. {  
  16. echo $i."=".mssql_field_name($objQuery,$i)." (".mssql_field_type($objQuery,$i).")<br>";  
  17. }  
  18. mssql_close($objConnect);  
  19. ?>  
  20. </body>  
  21. </html>  

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

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

Screenshot

PHP & SQL Server (mssql) Get Table Properties
.
.
.

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.