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('hostip:1433','user','pass') or die("SQL SERVER 数据库连接失败!"); // 选择数据库 mssql_select_db('UserInfo', $conn); // sql语句 $sql = "SELECT TOP 5 * FROM info"; $result = mssql_query($sql); //打印输出 //print_r($result); $num = mssql_num_rows($result); echo '有'.$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); ?>
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!