我将 RainTPL、Idiorm 和 Gluephp 用于由 sqlite 数据库驱动的简单网站。
加载首页后一切正常。 http://home.techtic.info
当另一个页面被加载时,我得到了首页的输出和由 RainTPL 加载的另一个页面的输出。 http://home.techtic.info/admin
问题:如何防止加载第二个 url 时加载数据?
这是代码:
RainTPL::configure('tpl_dir', 'view/');
RainTPL::configure('cache_dir', 'app/cache/');
RainTPL::configure('base_url', 'http://' . $_SERVER['SERVER_NAME'] . '/');
RainTPL::configure('tpl_ext', 'php');
RainTPL::configure('php_enabled', true);
ORM::configure('sqlite:app/database');
$urls = array(
'/' => 'index',
'/admin' => 'admin'
);
class index {
function GET() {
$content = ORM::for_table('product')->find_array();
$index = new RainTpl();
$index->assign('content', $content);
$index->draw('main');
}
}
class admin {
function GET() {
$admin = new RainTpl();
$admin->draw('admin/admin');
}
}