在PHP中,如果想要取得透過get方法提交的數據,可以透過$_GET物件來取得(雖然參數在網址列中可以查看)
HTML程式碼:以下就是一個簡單的表單程式碼,將資料提交到01.php,使用get的方式(推薦學習:PHP影片教學)
<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程式碼:
<?php echo "<h1>GET_PAGE</h1>"; echo 'userName:'.$_GET['userName']; echo '<br/>'; echo 'userEmail:'.$_GET['userEmail']; ?>
以上是php如何取得get提交的參數的詳細內容。更多資訊請關注PHP中文網其他相關文章!