我正在处理一项任务,并按如下方式设置了我的代码:
在index.php
我包含一个文件,该文件用作带有代码的视图:
include 'Controller/CallArticleData.php';
$i = count($display) - 1;
while ($i >= 0) {
echo "<a href='index.php?editID=" . $display[$i]['ID'] . "'>" . $display[$i]['title'] . "</a><br/>";
$i--;
}
基本上,我调用控制器,它调用相关模型,然后我使用数据来设置 URL - 我希望它$_POST['editID']
在用户点击相应链接时设置。
但是,即使 URL 更改为index.php?editID=12345
. 我在 index.php 和各自的视图中都执行了这个检查。
我究竟做错了什么?