【发布时间】:2012-10-02 14:50:56
【问题描述】:
我正在使用具有大量数据的 mssql 服务器后端和新闻字段,但是当我在 php 中检索此信息时,它只显示有限的部分而不是该字段的所有信息
这是我的 php 代码-
$result_subset = mssql_query ("Select news as notes from atimo_m12 where name like 'masses%' and category = 'M-Offices & Ministries'");
while($rsSelection = mssql_fetch_assoc($result_subset)){
echo $rsSelection["notes"];
}
【问题讨论】:
-
@doublesharp - 还没解决
-
请看我的回答,有更详细的解释。您尝试返回的数据大小是多少?
-
您使用哪个操作系统 - Windows 或其他?你检查过驱动设置吗?
标签: php html sql-server