How to connect to sqlserver with PHP
sqlserver
Also known as MSSQL, it is a relational database management system (DBMS) developed and promoted by Microsoft. The operating software can use "sqlserver"
How does php connect to sqlserver?
First of all, it is clear that wampserver does not support connecting to sqlserver, so you have to download the driver to connect to sqlserver yourself. There are also PHP versions that are 5.3 or above, excluding 5.3
1) Download the Microsoft SQL Server PHP driver. (Recommended learning: PHP Programming from Beginner to Master)
With the Microsoft SQL Server PHP driver, PHP developers can access SQL Server databases. This type of driver relies on the Microsoft SQL Server ODBC driver to handle low-level communication with SQL Server. What I downloaded is 3.0, run the installation and extract it to the PHP extension directory ext,
2) Here I am using the PHP 5.4.45 version, so the driver to be used is
;sqlserver
extension=php_pdo_sqlsrv_54_ts.dll
extension=php_sqlsrv_54_ts.dll
3) The first connection may report an odbc driver error. I checked for a long time and it turns out that it still needs to be installed. sqlserver odbc driver source
Download and install directly
https://www.microsoft.com/en-us/download/confirmation.aspx?id=36434
4) Connection test code
public function index() { //echo phpinfo(); $serverName = "222.180.xxx.xx"; //数据库服务器地址 $uid = "bbapp"; //数据库用户名 $pwd = "bbapp2017"; //数据库密码 $connectionInfo = array("UID"=>$uid, "PWD"=>$pwd, "Database"=>"rivermanage"); $conn = sqlsrv_connect($serverName, $connectionInfo); if( $conn == false){ echo "连接失败!"; var_dump(sqlsrv_errors()); exit; }else{ echo "链接成功"; }}
The above is the detailed content of How to connect to sqlserver with PHP. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
