In PHP, if you want to obtain the data submitted through the get method, you can obtain it through the $_GET object (although the parameters can be viewed in the address bar)
HTML code: The following is a simple form code to submit data to 01.php, using the get method (recommended learning: PHP video tutorial)
<form action="01.php" method="get" > <label for="">姓名: <input type="text" name= "userName"></label> <br/> <label for="">邮箱: <input type="text" name= "userEmail"></label> <br/> <input type="submit" name=""> </form>
PHP code:
<?php echo "<h1>GET_PAGE</h1>"; echo 'userName:'.$_GET['userName']; echo '<br/>'; echo 'userEmail:'.$_GET['userEmail']; ?>
The above is the detailed content of How to get the parameters submitted by get in php. For more information, please follow other related articles on the PHP Chinese website!