-6

有谁知道他们是怎么做到的? http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_button_value2。不幸的是,这不是他们教程的一部分。对不起这个问题,我只是一个初学者,我想了解这些东西。谢谢你。

4

1 回答 1

0

那里有很多教程......这可能很简单:

<?php if(isset($_GET['subject'])): ?>
    <?= 'You chose: ' . $_GET['subject']; ?>
<?php else: ?>
<html>
    <body>
        <form method="get" action="<?= $_SERVER['PHP_SELF']; ?>">
            Choose your favorite subject:
            <button type="submit" name="subject" value="fav_HTML">HTML</button>
            <button type="submit" name="subject" value="fav_CSS">CSS</button>
        </form>
    </body>
</html>
<?php endif; ?>
于 2013-10-10T20:22:13.000 回答