我正在使用CodeIgniter从SQL Server数据库中提取数据。我的连接很好,但问题是我只能查询一次数据库!
例如,我的网络界面上有两个链接。一个人提取数据显示学生的详细信息,另一个人应该提取大学课程。当我点击链接拉取学生详细信息时,其他链接将无效;它什么都没显示!这两个链接都使用有效代码编码,并且它们一次只能处理一个。
我该怎么做?
答案 0 :(得分:0)
Thanx i finaly got it right! I just forgot to put 'echo' behind the generate
statement hence when i clicked that link it could'nt
draw any table on the interface.
**WRONG ONE.**
<?php
$this->table->generate($getAddresses_contents);
?>
**CORRECT ONE.**
<?php
echo $this->table->generate($getAddresses_contents);
?>