php 脚本在浏览器中不显示任何内容,检查元素显示<!--?php echo 'Text here I can't see'; ?-->
这是我的代码:
<html>
<head>
<title>Something</title>
</head>
<body>
<h1>Something texttexttext</h1>
<?php
echo 'Text here I can't see';
?>
</body>
</html>
当我在浏览器中打开它时,我只是得到-“一些 texttexttext”而不是“这里的文本我看不到”。