我是PHP(OOP)的CRUD新手。我已成功插入数据,但在插入数据后,数据中的所有数据列表都没有显示。这是代码:
Function.php
class Section {
function showSection(){
$sql="SELECT * FROM section";
$query=ibase_query($sql);
return $query;
}
}
list.php的
<table>
<tr>
<td>No</td>
<td>Section Code</td>
<td>Section Name</td>
</tr>
<?php
include ('Function.php');
$No=1;
$Sec=new Section();
$show=$Sec->showSection();
while ($data=ibase_fetch_object($show)){
echo"
<tr>
<td>
<td>$data->section_code</td>
<td>$data->section_name</td>
</tr>";
$No++
};
?>
</table>
答案 0 :(得分:1)
尝试$data->SECTION_CODE
(大写字段名称)