我正在使用 MAMP。PHP 标记后的任何代码都不会显示在浏览器中。
我怀疑这与我在发送 PHP 后可以发送到浏览器的内容有关吗?或者可以在 HTML doc 之前发送哪些内容?
代码:
<?php
/* Web Controller for searching music */
session_start();
echo "I display fine!";
?>
<html>
<head>
<title>Listen2me</title>
</head>
<body>
<h1>Listen2.me</h1>
<input type="text" name="songChoice" value="Search songs">
</body>
</html>