我正在尝试使用 Slim PHP 框架创建一个论坛。但是,我遇到了为论坛的每个部分分配参数的问题。我想为每个类别厕所主题获取一个 ID。这意味着网址将类似于:
http://website.com/forum?catID=1
基于此,页面将呈现该类别的主题。我一直在使用该urlFor()
功能,但我似乎无法弄清楚将其传递给它。
这是我当前的路线代码:
$app->get('/forum', function() use($app) {
$categories = $app->categories->get();
$topics = $app->topics->get();
$app->render('forum/forumCat.php', ['categories' => $categories, 'topics' => $topics]);
})->name('forumCategories');
对于我用来显示类别的代码:
{% for category in categories %}
<br>
<p><a href="#">{{category.category_title}}<a><br>{{category.category_description}}</p>
<br>
<br>
{% endfor %}
谢谢