此问题已在此处找到答案:
参考-这个符号在php中是什么意思((21个答案)
8小时前关门。
这是我的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Form</title>
</head>
<body>
<form action="form.php" method="get">
Name: <input type="text" name="username">
<br>
Age: <input type="number" name="age"><br>
<input type="submit">
</form>
<?php
echo $_GET["username"];
echo "</br>";
echo $_GET['age'];
?>
</body>
</html>
我得到一个错误:
警告:第18行c:\users\nambi\desktop\php tutorial\form.php中未定义的数组键“username”
警告:第20行c:\users\nambi\desktop\php tutorial\form.php中未定义的数组键“age”。
1条答案
按热度按时间yxyvkwin1#
在回显之前,应首先检查数组键值是否存在,如下所示: