如何在href中链接PHP MVC页面?
在我的model
中,我链接了模型类,控制器类和视图页面,但是它只显示浏览器中的视图页面而controller
和controller
不起作用,我应该调用href
功能。我很困惑。
以下是我的<a href="../../View/Modules/Security/SubModules/Masters/UserCreationView.php/Model/Model.php/Controller/Controller.php?show_data"><img src="../../public/images/ModuleImages/Security.gif" style="height: 130px; width: 150px;"/></a>
链接
public function Show_data()
{
include './Login.php';
$result= $this->model->Login_Data();
$result= $this->model->Insert_update_data();
$result= $this->model->Delete_data();
$result= $this->model->Search_data();
}
这是我的控制器功能,
{{1}}