ばかげた質問かもしれませんが、とにかく質問します。
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>
または:
<html>
<head>
</head>
<body>
<center>
<font size="2">This is text</font>
</center>
</body>
</html>
<?php
echo "This is text";
?>
または:
<html>
<head>
</head>
<body>
<?php
echo "This is text";
?>
</body>
</html>