You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### [How to: Disable Multiple Active Resultsets (MARS)](how-to-disable-multiple-active-resultsets-mars.md)
27
28
### [Connection Options](connection-options.md)
28
-
### [PHP Driver for SQL Server Support for LocalDB](php-driver-for-sql-server-support-for-localdb.md)
29
-
### [PHP Driver for SQL Server Support for High Availability, Disaster Recovery](php-driver-for-sql-server-support-for-high-availability-disaster-recovery.md)
29
+
### [Support for LocalDB](php-driver-for-sql-server-support-for-localdb.md)
30
+
### [Support for High Availability, Disaster Recovery](php-driver-for-sql-server-support-for-high-availability-disaster-recovery.md)
30
31
### [Connecting to Microsoft Azure SQL Database](connecting-to-microsoft-azure-sql-database.md)
Copy file name to clipboardExpand all lines: docs/connect/php/about-code-examples-in-the-documentation.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "About Code Examples in the Documentation | Microsoft Docs"
3
3
ms.custom: ""
4
-
ms.date: "01/19/2017"
4
+
ms.date: "02/16/2018"
5
5
ms.prod: "sql-non-specified"
6
6
ms.prod_service: "drivers"
7
7
ms.service: ""
@@ -24,17 +24,15 @@ ms.workload: "Inactive"
24
24
25
25
There are several points to note when you execute the code examples in the [!INCLUDE[ssDriverPHP](../../includes/ssdriverphp_md.md)] documentation:
26
26
27
-
- Nearly all the examples assume that SQL Server 2005 or later (SQL Server 2008 or later if using version 3.1) and the AdventureWorks database are installed on the local computer.
27
+
- Nearly all the examples assume that SQL Server 2008 or later and the AdventureWorks database are installed on the local computer.
28
28
29
29
For information about how to download free editions and trial versions of SQL Server, see [SQL Server](http://go.microsoft.com/fwlink/?LinkID=120193).
30
30
31
-
For information about how to download the AdventureWorks database, see [Microsoft SQL Server Samples and Community Projects](http://go.microsoft.com/fwlink/?LinkID=67739).
32
-
33
-
For information about how to install the AdventureWorks database, see [Walkthrough: Installing the AdventureWorks Database](http://go.microsoft.com/fwlink/?LinkID=65819).
31
+
For information about how to download and install the AdventureWorks database, see the [AdventureWorks page in the SQL Server Samples Github repository](https://github.com/Microsoft/sql-server-samples/tree/master/samples/databases/adventure-works).
34
32
35
33
- Nearly all the code examples in this documentation are intended to be run from the command line, which enables automated testing of all the code examples. For information about how to run PHP from the command line, see [Using PHP from the command line](http://php.net/manual/en/features.commandline.php).
36
34
37
-
- Although examples are written to be run from the command line, each example can be run by invoking it from a browser without making any changes to the script. To achieve nice output formatting, replace each "\n" with "\<\/br>" in each example before invoking it from a browser.
35
+
- Although examples are meant to be run from the command line, each example can be run by invoking it from a browser without making any changes to the script. To format output nicely, replace each "\n" with "\<\/br>" in each example before invoking it from a browser.
38
36
39
37
- For the purpose of keeping each example narrowly focused, correct error handling is not done in all examples. It is recommended that any call to a **sqlsrv** function or PDO method be checked for errors and handled according to the needs of the application.
40
38
@@ -54,5 +52,5 @@ There are several points to note when you execute the code examples in the [!INC
54
52
For more information about handling errors and warnings, see [Handling Errors and Warnings](../../connect/php/handling-errors-and-warnings.md).
55
53
56
54
## See Also
57
-
[Overview of the PHP SQL Driver](../../connect/php/overview-of-the-php-sql-driver.md)
55
+
[Overview of the Microsoft Drivers for PHP for SQL Server](../../connect/php/overview-of-the-php-sql-driver.md)
This topic provides links to resources on the [Internet Information Services (IIS) Web site](http://go.microsoft.com/fwlink/?LinkId=121375) that are relevant to configuring IIS to host PHP applications. The resources listed here are specific to using FastCGI with IIS. FastCGI is a standard protocol that allows an application framework's Common Gateway Interface (CGI) executables to interface with the Web server. FastCGI differs from the standard CGI protocol in that FastCGI re-uses CGI processes for multiple requests.
27
+
This topic provides links to resources on the [Internet Information Services (IIS) Web site](https://www.iis.net/) that are relevant to configuring IIS to host PHP applications. The resources listed here are specific to using FastCGI with IIS. FastCGI is a standard protocol that allows an application framework's Common Gateway Interface (CGI) executables to interface with the Web server. FastCGI differs from the standard CGI protocol in that FastCGI reuses CGI processes for multiple requests.
28
28
29
29
## Tutorials
30
30
The following links are for tutorials about setting up FastCGI for PHP and hosting PHP applications on IIS 6.0 and IIS 7.0:
31
31
32
-
-[FastCGI with PHP](http://go.microsoft.com/fwlink/?LinkId=121376)
33
-
-[Using FastCGI to Host PHP Applications on IIS 7.0](http://go.microsoft.com/fwlink/?LinkId=121377)
34
-
-[Using FastCGI to Host PHP Applications on IIS 6.0](http://go.microsoft.com/fwlink/?LinkId=121378)
35
-
-[Configuring FastCGI Extension for IIS 6.0](http://go.microsoft.com/fwlink/?LinkId=121379)
32
+
-[FastCGI with PHP](https://docs.microsoft.com/iis/web-hosting/web-server-for-shared-hosting/fastcgi-with-php)
33
+
-[Using FastCGI to Host PHP Applications on IIS 7.0](https://docs.microsoft.com/iis/application-frameworks/install-and-configure-php-applications-on-iis/using-fastcgi-to-host-php-applications-on-iis)
34
+
-[Using FastCGI to Host PHP Applications on IIS 6.0](https://docs.microsoft.com/iis/application-frameworks/install-and-configure-php-applications-on-iis/using-fastcgi-to-host-php-applications-on-iis-60)
35
+
-[Configuring FastCGI Extension for IIS 6.0](https://docs.microsoft.com/iis/application-frameworks/install-and-configure-php-on-iis/configuring-the-fastcgi-extension-for-iis-60)
36
36
37
37
## Video Presentations
38
38
The following links are for video presentations about setting up FastCGI for PHP and using IIS 7.0 features to host PHP applications:
39
39
40
-
-[Setting up FastCGI for PHP](http://go.microsoft.com/fwlink/?LinkId=121380)
41
-
-[Partying with PHP on Microsoft Internet Information Services 7](http://go.microsoft.com/fwlink/?LinkId=121381)
40
+
-[Setting up FastCGI for PHP](https://docs.microsoft.com/en-us/iis/application-frameworks/running-php-applications-on-iis/set-up-fastcgi-for-php)
41
+
-[Partying with PHP on Microsoft Internet Information Services 7](https://docs.microsoft.com/en-us/iis/application-frameworks/running-php-applications-on-iis/mix08-partying-with-php-on-microsoft-internet-information-services-7-and-above)
42
42
43
43
## Support Resources
44
44
The following forums provide community support for FastCGI on IIS:
Copy file name to clipboardExpand all lines: docs/connect/php/connecting-to-the-server.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "Connecting to the Server | Microsoft Docs"
3
3
ms.custom: ""
4
-
ms.date: "01/19/2017"
4
+
ms.date: "02/16/2018"
5
5
ms.prod: "sql-non-specified"
6
6
ms.prod_service: "drivers"
7
7
ms.service: ""
@@ -37,11 +37,12 @@ The [!INCLUDE[ssDriverPHP](../../includes/ssdriverphp_md.md)] can connect to [!I
37
37
|[Connection Pooling](../../connect/php/connection-pooling-microsoft-drivers-for-php-for-sql-server.md)|Provides information about connection pooling in the driver.|
38
38
|[How to: Disable Multiple Active Resultsets (MARS)](../../connect/php/how-to-disable-multiple-active-resultsets-mars.md)|Describes how to disable the MARS feature when making a connection.|
39
39
|[Connection Options](../../connect/php/connection-options.md)|Lists the options that are permitted in the associative array that contains connection attributes.|
40
-
|[PHP Driver for SQL Server Support for LocalDB](../../connect/php/php-driver-for-sql-server-support-for-localdb.md)|Describes [!INCLUDE[ssDriverPHP](../../includes/ssdriverphp_md.md)] support for the LocalDB feature, which was added in [!INCLUDE[ssSQL11](../../includes/sssql11_md.md)].|
41
-
|[PHP Driver for SQL Server Support for High Availability, Disaster Recovery](../../connect/php/php-driver-for-sql-server-support-for-high-availability-disaster-recovery.md)|Discusses how your application can be configured to take advantage of the high-availability, disaster recovery features added in [!INCLUDE[ssSQL11](../../includes/sssql11_md.md)].|
40
+
|[Support for LocalDB](../../connect/php/php-driver-for-sql-server-support-for-localdb.md)|Describes [!INCLUDE[ssDriverPHP](../../includes/ssdriverphp_md.md)] support for the LocalDB feature, which was added in [!INCLUDE[ssSQL11](../../includes/sssql11_md.md)].|
41
+
|[Support for High Availability, Disaster Recovery](../../connect/php/php-driver-for-sql-server-support-for-high-availability-disaster-recovery.md)|Discusses how your application can be configured to take advantage of the high-availability, disaster recovery features added in [!INCLUDE[ssSQL11](../../includes/sssql11_md.md)].|
42
42
|[Connecting to Microsoft Azure SQL Database](../../connect/php/connecting-to-microsoft-azure-sql-database.md)|Discusses how to connect to an Azure SQL Database.|
43
43
|[Connection Resiliency](../../connect/php/connection-resiliency.md)|Discusses the connection resiliency feature that reestablishes broken connections.|
44
44
45
45
## See Also
46
-
[Programming Guide for PHP SQL Driver](../../connect/php/programming-guide-for-php-sql-driver.md)
46
+
[Programming Guide for the Microsoft Drivers for PHP for SQL Server](../../connect/php/programming-guide-for-php-sql-driver.md)
0 commit comments