How to connect to sql server2012 using php toolbox?
PHP中文网2017-07-22 09:17:08
You can use navicat for sqlserver cracked version to manage the database. The environment still uses the php toolbox.
phpcn_u97562017-07-22 07:20:13
I installed these two URLs, you have to use them together.
http://blog.csdn.net/a250758092/article/details/70568803
http://jingyan.baidu.com/album/597a064340f909312a524364.html?picindex=3
I use SQL Server 2014, the same method as 2012.
First you need to know which version of PHP you are using. Download the corresponding mssql DLL file according to PHP.
Download from here https://www.microsoft.com/en-us/download/details.aspx?id=36434
Version support for PHP is as follows
SQLSRV40.EXE supports PHP 7.0 + on Windows and Linux
SQLSRV32.EXE supports PHP 5.6, 5.5, and 5.4 on Windows
SQLSRV31.EXE supports PHP 5.5 and 5.4 on Windows
SQLSRV30.EXE supports PHP 5.4 on Windows
This is the corresponding PHP version mssql dll file. I am using PHP5.4.x, and I downloaded SQLSRV30.EXE.
Then install according to the tutorial on the website. After decompression, there will also be relevant SQLSRV_Help.chm usage tutorial, which is all in English. If your English is good, I won't speak. If it is not good, you can decompose chm into html, and then use a translation tool to translate it into Chinese, which can basically be understood.
I also started to learn.