如何使用数组使用HTML和PHP显示用户输入

时间:2019-03-13 00:35:57

标签: php html arrays post

因此,我想让用户将动物输入数组,并使用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>

1 个答案:

答案 0 :(得分:0)

尚未调用您的函数display()。随便叫

<?php
    display();
?>