我正在构建我的第一个真正的 php web 应用程序。众所周知,这需要构建大量页面。
为了简化重复的内容,我将大部分内容放在了 content.php 页面中,如下所示
<?php include_once ('config3.inc');?>
<?php if(isset($_GET['p'])){
$page = $_GET['p'];
}else {
$page ='';
}
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php echo $_SERVER['PHP_SELF'];?></title>
<?php include('styles.inc');?>
<?php include('api.inc'); ?>
<?php include('scripts.inc');?>
</head>
<body>
<div id="container">
<?php include ('header.inc');?>
<div><!-- Content -->
<?php include ('./content/'.$page);?>
</div>
</div><!-- end container -->
<!-- Footer -->
<?php include ('footer.inc');?>
</body>
</html>
这样,当我想调用一个页面时,我会转到 www.domain.com/content.php?p=pagename.php,它会将所有内容“包装”在正确的样式表容器和页脚等中。
一直运行良好,直到我开始制作需要该页面名称的 CRUD 页面使用 POST 数据。
有没有更好的方法,还是我需要完全放弃这种方法?