这是我的错误 - 它有一些我忽略的东西,不知道它在哪里。
解析错误:语法错误,第107行/home/mjcrawle/public_html/cit0215/assignment5/onlinebanking/viewaccounts.php中的意外$结尾
问候
<?php
require_once('footer_nav/navigation.inc.php');
require_once('../websiteconfig.inc.php');
require_once('/class/person.class.php');
require_once('../class/database.class.php');
/*Start Session*/
session_start();
$currentMember =usserialize($_session['currentMember']);
/*DataBase*/
$db = new Database;
$conn = $db->connection;
?>
<td width="16"> </td>
<td width="595">
</td>
</tr>
</div>
<h2>Accounts</h2>
</td>
<table id="accounts" summary="Bank Account Balance Information">
<thread>
<tr>
<th>Account Number</th>
<th>Account Balance</th>
</tr>
</thead>
<tbody>
<?
/*Accounts*/
$currentMember->connection = $conn;
$account = $currentMember->retrieve_all_accounts();
/* Loop Though Accounts*/
while($acount = mysqli_fetch_assoc($acount)) {
/* Retrieve Account Balance*/
$bankaccount = new Bankaccount ($account['BankAccountID']);
$bankaccount->connection = $conn;
$balance = mysqli_fetch_assoc($bankaccount->retrieve_current_balance());
echo '<tr>' . "\n";
echo "\t" . '<td class="account_number">' . $account['BankAccountID'] . '</td>' . "\n";
echo "\t" . '<td class="account_balance">$' . number_format($balance['CurrentBalance'], 2) . '</td>' . "\n";
echo '</tr>' . "\n";
/*Closed DataBase*/
mysqli_close($db->connecion);
}
?>
答案 0 :(得分:2)
这样做:
一次删除一个包含的类,看看其中一个是否是原因。
我的猜测是你会在其中一个中找到{没有匹配}
答案 1 :(得分:1)
看起来你的while循环没有关闭。
while($acount = mysqli_fetch_assoc($acount)) {
或者您过早地关闭了数据库连接。 (在while循环中)
根据您在此处包含的代码,我可以告诉您。
尝试在
之后结束你的while循环 echo '</tr>' . "\n";
看看是否有帮助。
答案 2 :(得分:0)
在最后一次关闭?>
之后追踪回车。