请各位老师帮忙看看,上面标红色字的代码有错,请指点,多谢

请各位老师帮忙看看,下面标红色字的代码有错,请指点,谢谢!-- $Id: account_list.htm 14928 2008-10-06 09

请各位老师帮忙看看,下面标红色字的代码有错,请指点,谢谢
<!-- $Id: account_list.htm 14928 2008-10-06 09:25:48Z testyang $ -->
{if $full_page}
{include file="pageheader.htm"}
{insert_scripts files="../js/utils.js,listtable.js"}

<div class="form-div">
<form method="post" action="account_log.php?act=list&user_id={$smarty.get.user_id}" name="searchForm">
  <select name="account_type" onchange="document.forms['searchForm'].submit()">
  <option value="" {if $account_type eq ''}selected="selected"{/if}>{$lang.all_account}</option>
  <option value="user_money" {if $account_type eq 'user_money'}selected="selected"{/if}>{$lang.user_money}</option>
  <option value="frozen_money" {if $account_type eq 'frozen_money'}selected="selected"{/if}>{$lang.frozen_money}</option>
  <option value="rank_points" {if $account_type eq 'rank_points'}selected="selected"{/if}>{$lang.rank_points}</option>
  <option value="pay_points" {if $account_type eq 'pay_points'}selected="selected"{/if}>{$lang.pay_points}</option>
  </select>
  <strong>{$lang.label_user_name}</strong>{$user.user_name}
  <strong>{$lang.label_user_money}</strong>{$user.formated_user_money}
  <strong>{$lang.label_frozen_money}</strong>{$user.formated_frozen_money}
  <strong>{$lang.label_rank_points}</strong>{$user.rank_points}
  <strong>{$lang.label_pay_points}</strong>{$user.pay_points}
  </form>
</div>

<form method="post" action="" name="listForm">
<div class="list-div" id="listDiv">
{/if}

  <table cellpadding="3" cellspacing="1">
  <tr>
  <th width="20%">{$lang.change_time}</th>
  <th width="30%">{$lang.change_desc}</th>
  <th>{$lang.user_money}</th>
  <th>{$lang.frozen_money}</th>
  <th>{$lang.rank_points}</th>
  <th>{$lang.pay_points}</th>
  </tr>
  {foreach from=$account_list item=account}
  <tr>
  <td>{$account.change_time}</td>
  <td>{$account.change_desc|escape:html}</td>
  <td align="right">
  {if $account.user_money gt 0}
  <span style="color:#0000FF">+{$account.user_money}</span>
  {elseif $account.user_money lt 0}
  <span style="color:#FF0000">{$account.user_money}</span>
  {else}
  {$account.user_money}
  {/if}
  </td>
  <td align="right">
  {if $account.frozen_money gt 0}
  <span style="color:#0000FF">+{$account.frozen_money}</span>
  {elseif $account.frozen_money lt 0}
  <span style="color:#FF0000">{$account.frozen_money}</span>
  {else}
  {$account.frozen_money}
  {/if}
  </td>
  <td align="right">
  {if $account.rank_points gt 0}
  <span style="color:#0000FF">+{$account.rank_points}</span>
  {elseif $account.rank_points lt 0}
  <span style="color:#FF0000">{$account.rank_points}</span>


  {else}
  {$account.rank_points}
  {/if}
  </td>
  <td align="right">
  {if $account.pay_points gt 0}
  <span style="color:#0000FF">+{$account.pay_points}</span>
  {elseif $account.pay_points lt 0}
  <span style="color:#FF0000">{$account.pay_points}</span>
  {else}
  {$account.pay_points}
  {/if}
  </td>
  </tr>
  {foreachelse}
  <tr><td class="no-records" colspan="6">{$lang.no_records}</td></tr>
  {/foreach}
  </table>
<table id="page-table" cellspacing="0">
  <tr>
  <td align="right" nowrap="true">
  {include file="page.htm"}
  </td>
  </tr>
</table>

{if $full_page}
</div>
</form>

<script type="text/javascript" language="javascript">
  <!--
listTable.recordCount = {$record_count};
  listTable.pageCount = {$page_count};

  {foreach from=$filter item=item key=key}
  listTable.filter.{$key} = '{$item}';
  {/foreach}

  {literal}
  onload = function()
  {
  // 开始检查订单
  startCheckOrder();
  }
  {/literal}
  //-->
</script>
{include file="pagefooter.htm"}
{/if}

[解决办法]
这句没错,是其他地方出问题了,你在找找,检查检查~~
[解决办法]
错误提示是什么?
相关php代码呢?
只有模板文件怎么看?
[解决办法]
提示的啥错误,语法错误还是显示错误
listTable.recordCount = {$record_count};
在动态页,也就是调用本静态页的php文件
{$record_count}这是模板要替换的值
看起来像个记录条数
要是你觉得数字相差,请看数据库查询时的条件