我正在尝试用 PHP 编程,但 php 标签不起作用:我相信下面的代码没有错误:
<html>
<head>
<?php
$test = "Gumagana ako :P";
echo "$test";
?>
<title>My First PHP</title>
</head>
<body>
My Test String is <?php echo $test; ">
</body>
</html>
你认为是什么问题?仅供参考,我正在使用 xampp。