Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Checking Your PHP Installation
By: FYIcenter.com
(Continued from previous topic...)
How To Check Your PHP Installation?
PHP provides two execution interfaces: Command Line Interface (CLI) and Common Gateway Interface (CGI).
If PHP is installed in the \php directory on your system, you can try this to check your installation:
- Run "\php\php -v" command to check the Command Line Interface (CLI).
- Run "\php\php-cgi -v" command to check the Common Gateway Interface (CGI).
If you see PHP printing the version information on your screen for both commands, your installation is ok.
Open a command window and run the commands below:
C:\>\php\php -v
PHP 5.2.2 (cli) (built: May 2 2007 19:18:26)
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0 Copyright (c) 1998-2007 Zend Technologies
C:\>\php\php-cgi -v
PHP 5.2.2 (cgi-fcgi) (built: May 2 2007 19:18:25)
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0 Copyright (c) 1998-2007 Zend Technologies
(Continued on next topic...)
- How To Download and Install PHP on Windows?
- How To Check Your PHP Installation?
- What Do You Need to Connect PHP to SQL Server?
- How to Turn on the MSSQL API Module?
- What Is Wrong with SQL Server Client Libarary DLL, ntwdblib.dll?
- What Happens If ntwdblib.dll Is Missing on Your Machine?
- Where to Find ntwdblib.dll Version 2000.80.194.0?
- How To Connect with Different Port Numbers?
- What Are Commonly Used MSSQL Functions in PHP?
- How To Disconnect from a SQL Server using mssql_close()?
- How To Select an Exiting Database using mssql_select_db()?
- How To Execute a SQL Statement using mssql_query()?
- How To Retrieve Error Messages using mssql_get_last_message()?
- How To Turn Off Warning Messages during PHP Execution?
- How To Receive Returning Result from a Query?
- How To Loop through Result Set Objects using mssql_fetch_array()?
- How To Retrieve Field Values using mssql_result()?
- How To List All Field Names in the Result Set using mssql_field_name()?
|