Collections:
Checking Your PHP Installation
How To Check Your PHP Installation?
✍: Guest
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:
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
⇒ Requirements for Connecting PHP to MS SQL Server
⇐ Downloading and Installing PHP on Windows
⇑ SQL Server FAQs - PHP MSSQL Functions - Connections and Query Execution
2024-04-29, 2333🔥, 0💬
Popular Posts:
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...
What Is an Oracle Instance in Oracle? Every running Oracle database is associated with an Oracle ins...
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...