Fun*_*ner 5 html php tags syntax
我有一个可能的愚蠢问题,但无论如何我都会问.
什么是首先,PHP或HTML代码是否重要?
例如:PHP在HTML之后,HTML之后还是重要的?
<?php
echo "This is text";
?>
<html>
<head>
</head>
<body>
<center>
<font size="2">This is text</font>
</center>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)
要么:
<html>
<head>
</head>
<body>
<center>
<font size="2">This is text</font>
</center>
</body>
</html>
<?php
echo "This is text";
?>
Run Code Online (Sandbox Code Playgroud)
要么:
<html>
<head>
</head>
<body>
<?php
echo "This is text";
?>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)
第三个是正确的方法(假设您希望文本在体内回显).
如上所示,PHP可以跳入和跳出HTML.
<html>
<head>
</head>
<body>
<center>
<font size="2"><?php echo "This is text"; ?></font>
</center>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)