search
HomeBackend DevelopmentPHP TutorialHow to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutorial

How to connect to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 for php5.3 and later versions, php5.3

Recently I was working on a system to capture the data of several tables in the housekeeper database and display it on the web page, so I searched online for how to connect php to the How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 database. Many textbooks on the Internet require configuring the php.ini configuration file. Remove the semicolon ";" in front of ;extension=php_msHow to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall.dll, then copy and paste php_msHow to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall.dll in the ext file to the system32 directory of the system disk, then restart the apache server, and then write the code to connect to the database: php $conn=msHow to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall_connect("server","database username","database password"); msHow to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall_selected('"corresponding database name",$conn);?>How about the server is generally written in the format of "ip, port number" It is the local machine and can be written as localhost, port or 127.0.0.1, port. As for how to write it according to your own situation, hereby declare that the above connection to the How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial database is limited to PHP version 5.3 or below. If you are using version 5.3 or above, the connection is not available because Microsoft no longer supports php version 5.3 or above. Let's explain how to connect php5.3 or above version to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 or above version database.

So how do php5.3 and above versions connect to the How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial database? Because of this, I also searched a lot of information. Some people said that you can download the driver, but the driver is only for the How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2005 or 2008 database version. Microsoft does not provide relevant support drivers for the How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 version. At least I didn't find it. Okay, enough gossip, anyway. Let me quickly introduce my method of connecting to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 using php5.3 or above. In fact, it is very simple, just use How to connect to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 in versions after php5.3, php5.3_PHP tutorial to connect to the 2000 database. Let’s talk about the steps directly. First, you need to configure the data source, open the control panel, find the management tools, open the management tools, and then double-click to open the data source (ODBC),

How to connect to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 in versions after php5.3, php5.3_PHP tutorialSelect System DSN and click Add

How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorialSelect How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall server, and then take the next step. Of course, if you are using other databases such as access, then you should choose the driver where access is turned off first.

How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorialThe name must be written, it is a necessary parameter for you to write code to connect and access the database. The server must also be selected. If it is this machine, choose local. If it is another machine, choose the visible name.

How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutorial

The login ID must be written, which is the name used to access your database. The password is also the password used to access the database. If there is one, write it. If not, leave it blank. Then continue to the next step until it is completed, and then test the connection. If you click Test Connection, it will prompt Congratulations if you succeed. Your php5.3 or above version has successfully connected to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000. Then the next step is to write the code to connect to the database.

The code I wrote is directly attached below for your reference:

<&#63;php

$conn=How to connect to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 in versions after php5.3, php5.3_PHP tutorial_connect(“刚才配置的数据源名字”,”访问数据库名字”,”访问数据库密码”);
$How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall=”select * from 表名”;
$exec=How to connect to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 in versions after php5.3, php5.3_PHP tutorial_exec($conn,$How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall);//执行语句
while(How to connect to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 in versions after php5.3, php5.3_PHP tutorial_fetch_array($exec))
{

$abc=How to connect to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 in versions after php5.3, php5.3_PHP tutorial_result($exec,'”数据表对应字段名字”);
echo $abc
…
}

I hope this article will be helpful to friends in need. It can be said that this article was summarized by myself. After searching a lot of information, it should be said that it is the most detailed article on connecting php5.3 and above to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000.

How to connect php536 to SQL server2000

After version php5.3.x, you need to install Microsoft's PHP driver yourself. PHP itself no longer provides SQL Server driver. Please refer to this blog of mine:
hi.baidu.com/...1.html

php connection How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall2000 problem

PHP can completely connect to MSSQL.

1. First of all, MS SQL Client Tools is required, which is a dll called ntwdblib.dll. It is usually copied to the system32 folder of the system after MS SQL Server is installed; if SQL Server is local, then you What needs to be verified is that the version of ntwdblib.dll is consistent with the version of SQL Server (2005 corresponds to 2000.80.194.0, 2000 corresponds to 2000.2.8.0;) If SQL Server is remote, you need to copy the ntwdblib.dll to the system32 of the local machine. folder;
(A problem often encountered here is that if php is installed later than SQL Server, php’s ntwdblib.dll will overwrite the copy under system32 when SQL server is installed. ntwdblib.dll, causing the link to prompt: Unable to link to the database)
2. After verifying the ntwdblib.dll under system32, you also need to overwrite the ntwdblib.dll under the php folder with the correct version of ntwdblib.dll;
3. The method of using MS SQL Server is very similar to that of MySQL;
is as follows:

//Link database
$conn=msHow to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall_connect('IBM- F24B11ED1CCSQLEXPRESS','sa','123456');
msHow to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall_select_db('LabMIS',?$conn);
//query statement
$Query="select * from admin";
$ AdminResult=msHow to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall_query($Query);
//Output result
$Num=msHow to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall_num_rows($AdminResult);
for($i=0;$i{
$Row=msHow to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriall_fetch_array($AdminResult);
echo($Row[1]);
echo("
");
}
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/851345.htmlTechArticleHow to connect to How to connect to How to connect to sqlserver2000 in versions after php5.3, php5.3_PHP tutoriallserver2000 in versions after php5.3, php5.3_PHP tutorial2000 for php5.3 and later versions, php5.3 is currently working on a system to capture the housekeeper database The data of several tables inside are displayed on the web page, so I searched online...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function