0
我試圖寫phpBMS小,單模模塊。問題寫phpBMS
我基本上修改和簡化一個存在,並且已經得到了創造在phpBMS本身表和頁面,使模塊安裝階段。
現在我想創建PHP頁面,將允許新的記錄被插入到通過phpBMS表,我得到以下錯誤:
Fatal error: Class 'guests' not found in xxx_addedit.php on line 45
文件實際上是評論,直到第40行,所以我已經發布了第9行,45行對應於5日線
include("../../include/session.php");
include("include/tables.php");
include("include/fields.php");
include("include/menu.php");
$thetable = new xxx($db, "tbld:4e28e4bd-d4b0-1a2b-4d87-a4ddf8a54a86");
$therecord = $thetable->processAddEditPage();
if(isset($therecord["phpbmsStatus"]))
$statusmessage = $therecord["phpbmsStatus"];
$pageTitle="xxx";
我修改的原始文件是在源here在線查看,以及引用的包含文件。
這是我的理解,我應該能夠使所謂取其我喜歡的表類的新實例,所以我不到底爲什麼它看來我要定義一個類爲每個表?
這裏任何意見將不勝感激。