我正在使用 PDO 数据库连接 PHP 编程与 MVC 模型中的类和对象。
我创建了一个可以在我自己的本地主机上 100% 运行的网站,但是当我将它上传到我的主机时(当然还更改了数据库连接数据),它不起作用。我在 view.php(MVC) 中包含的 html 未添加到页面中。虽然我测试了 view.php 文件是否包含在内。那么是否需要任何准备才能使我的渲染功能正常工作?
视图.php
class View{
public function render($url = "", $data = true){
include "app/views/template/header.php" ;
include "app/views/template/top.php" ;
include "app/views/template/menu.php" ;
include "app/views/" . $url . ".php";
include "app/views/template/bot.php" ;
include "app/views/template/footer.php" ;
}
}