Home > php教程 > PHP开发 > body text

Simple implementation method of PHP extending remote connection to MSSQL based on mssql

高洛峰
Release: 2016-12-20 16:39:12
Original
1290 people have browsed it

The example in this article describes the simple implementation method of PHP extending remote connection to MSSQL based on mssql. Share it with everyone for your reference, the details are as follows:

What is given here is a simple example, no security considerations are taken, handle it by yourself:

<?php
// 连接数据库
$conn = mssql_connect(&#39;hostip:1433&#39;,&#39;user&#39;,&#39;pass&#39;) or die("SQL SERVER 数据库连接失败!");
// 选择数据库
mssql_select_db(&#39;UserInfo&#39;, $conn);
// sql语句
$sql = "SELECT TOP 5 * FROM info";
$result = mssql_query($sql);
//打印输出
//print_r($result);
$num = mssql_num_rows($result);
echo &#39;有&#39;.$num."条记录<br>";
if($num){
 //循环出每一条记录
 for( $i=0;$i<$num;$i++ ){
 $Row = mssql_fetch_array($result);
 echo $Row[0].$Row[1]."...<br/>";
 }
}else{
 echo "暂无数据" ;
}
//关闭连接
mssql_close($conn);
?>
Copy after login

I hope this article will be helpful to everyone in PHP programming.

For more related articles on the simple implementation method of PHP extending remote connection to MSSQL based on mssql, please pay attention to the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!