我使用xampp获取此错误消息我无法弄清楚它是否是代码或我需要在xampp im中使用Windows 7配置某些内容 它通常有效,但由于某种原因_get会崩溃我认为
Access forbidden!
You don't have permission to access the requested object. It is either read-protected or not readable by the server.
这是我的PHP代码
<?php
if (isset($_GET('day'))){
};
//echo $_get('day');
$text = 'Hello World.'
?>
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
<form action="index.php" method="GET">
day:<input type="text" name="day"value=""><br />
date:<input type="text" name="date"value=""><br />
name:<input type="text" name="name"value=""><br />
email:<input type="text" name="email"value=""><br />
<input type="submit"value = "submit">
</form >
</body>
</html>
我知道之前已经问过这个问题,但我找不到有用的答案