Ошибка с методом GET
Ребят делаю все как в видео уроке, но при нажатие на кнопку отправить имя не показывает. а показывает стпаницу INDEX:
Index of /
Name
Last modified
Size
Description
Kinomonster/
2020-02-15 23:27
-
Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.4.2 Server at localhost Port 8080
Нажимаеш на киномонстр он показывает ошибку:
Warning: Use of undefined constant name - assumed 'name' (this will throw an Error in a future version of PHP) in F:\Programs\htdocs\Kinomonster\index.php on line 5
Notice: Undefined index: name in F:\Programs\htdocs\Kinomonster\index.php on line 5
<?php
print_r($_GET);
//echo $_GET[name];
?>
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<form action="/" method="get">
<input type="text" name="name" placeholder="ваше имя">
<input type="submit" value="отправить">
</form>
</body>
</html>