Home >Backend Development >PHP Tutorial >连接数据库时,报HTTP500错误

连接数据库时,报HTTP500错误

WBOY
WBOYOriginal
2016-06-23 14:28:003059browse

HTTP500错误

运行环境是:IIS7.0+PHP5.32+SQL2005
打开PHP网页正常,连接数据库里,报HTTP500错误。寻求解决方法。
连接数据库的代码如下:

//链接数据库 
 $conn=mssql_connect('127.0.0.1','KT99CtQC','C09076789101234w') or die('数据库连接不上'); 
   mssql_select_db('agencyhdfc',$conn); 
//query语句   
 $Query="select max(propertyno) from property where propertyno like 'xx%'"; 

$AdminResult=mssql_query($Query);
//输出结果
$Num=mssql_num_rows($AdminResult);
for($i=0;$i {
$Row=mssql_fetch_array($AdminResult);
echo($Row[0]);
echo("
");
}

 echo($row[0]); 

回复讨论(解决方案)

打开错误提示功能看看有没有报错。

你这数据库连接怎么那么麻烦,我们最近刚学的php 数据库连接:
〈?php
     $link =mysqy_connect (‘127.0.0.1','KT99CtQC','C09076789101234w');
   if (!$link)  echo “失败”;
    else echo “成功”;
   mysql_close ($link );
?〉

哦,初步看来你这数据库的连接与操作没什么错误!!!

调试看看吧,一般报错问也没用。500原因多了

检查下apache 日志

我连接的是MSSQL。用的是IIS。

/输出结果
$Num=mssql_num_rows($AdminResult);

这里的函数貌似是
 mysql_num_rows  吧

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