1 頁 (共 1 頁)

[問題]complete banner mod 1.3.3em的問題

發表於 : 2004-02-11 20:52
austin
安裝後會在ACP最下方出現這個訊息\r
PHP Parse error: parse error, unexpected ';', expecting ')' in 路徑省略admin_db_utilities.php on line 697
我查了一下697這一行發現是\r
[php]<?php
// Start add - Complete banner MOD
$tables[] = 'banner';
$tables[] = 'banner_stats';
// End add - Complete banner MOD
?>[/php]

原本修改前的是\r
[php]<?php
$tables = array('auth_access',後面省略\r
?>[/php]
我修改為\r
[php]<?php
$tables = array($tables[] = 'banner';$tables[] = 'banner_stats';'auth_access',後面省略\r
?>[/php]

請問各位問題何在呢?
謝謝!

發表於 : 2004-02-12 12:03
austin
麻煩好心人士幫忙解決!

發表於 : 2004-02-12 20:32
aiken
$tables = array($tables[] = 'banner';$tables[] = 'banner_stats';'auth_access',後面省略\r
問題在中間的 ";"
使用 ";" 表示這一行結束了 改成 "," 試試看

發表於 : 2004-02-15 23:45
austin
我試試看!先謝謝你了