Ich habe eine mögliche dumme Frage, aber ich werde es trotzdem fragen.PHP oder HTML zuerst oder spielt es eine Rolle?
Ist es wichtig, was zuerst geht, PHP oder HTML-Code?
Zum Beispiel: Geht PHP vor HTML, nach HTML oder spielt es überhaupt eine Rolle?
<?php
echo "This is text";
?>
<html>
<head>
</head>
<body>
<center>
<font size="2">This is text</font>
</center>
</body>
</html>
Oder:
<html>
<head>
</head>
<body>
<center>
<font size="2">This is text</font>
</center>
</body>
</html>
<?php
echo "This is text";
?>
Oder:
<html>
<head>
</head>
<body>
<?php
echo "This is text";
?>
</body>
</html>
Ich mag Option # 4.Behalte den HTML-Code und was auch immer er steuert * getrennt * Sei es ein "Widget-Modell" oder "MVC" oder "Template" oder was auch immer ... (aber nur einer der oben genannten wird tun, was wirklich benötigt wird: ' ?>' läuft " in line ".) –
@pst Vielen Dank, ich schätze Ihre Eingabe. –