因此,我想让用户将动物输入数组,并使用PHP函数将其显示回来。我知道我缺少一些代码,但是我还需要什么?
<!DOCTYPE html>
<html>
<head>
<title> Proj. 2</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1> Animal Form</h1>
<form action="display.php" method="post">
Enter animal:<br>
<input type="text" name="animal"><br><br>
<input type="Submit" value="Add Animal">
</form>
<?php
function display() {
$animal = $_POST['animal'];//If code doesnt work change these variables
echo $_POST["animal"];
}
?>
</body>
</html>
答案 0 :(得分:0)
尚未调用您的函数display()。随便叫
<?php
display();
?>