我有一个signin.php文件,可以在多个网页中使用,用户可以通过弹出窗口登录。此文件包括
<?php
//some code to process submitted sign up form
?>
<div>
// some html code for the sign in pop up window
</div>
我想在其他html页面文件中包含signin.php。我需要用包装上面的html代码吗!DOCTYPE html、html、head还是body标签?我测试了它似乎在没有这些标签的情况下工作。谢谢
不,如果你只想包括另一个文件中的标签,那么你就不需要放<html>
标签,因为如果你的代码是
<!DOCTYPE html>
<html>
<head></head>
<body>
<div>
<?php include("hello.php")?>
</div>
</body>
</html>
在hello.php中,您只有一个带有hello的h1标记它将被渲染为
<div>
<h1>Hello</h1>
</div>