1.Get 方法

Information sent from a form with the GET method is visible to everyone (it will be displayed in the browser's address bar) and has limits on the amount of information to send (max. 100 characters).

 

ex.

for front.html:

<html>
<form action="end.php" method="get">
First name: <input type="text" name="name" />
Gender: <input type="text" name="sex" />
<input type="submit" />
</form>
</html>


for end.php

<?php
echo 'Welcome ';
if($_GET['sex']=='male') echo 'Mr.';
elseif($_GET['sex']=='female') echo 'Ms.';
else echo 'Guest';
echo $_GET['name'];
?>

 

2.Post 方法

ex.

for front.html

<html>
<form action="end.php" method="post">
First name: <input type="text" name="name" />
Gender: <input type="text" name="sex" />
<input type="submit" />
</form>
</html>

for end.php

<?php
echo 'Welcome ';
if($_POST['sex']=='male') echo 'Mr.';
elseif($_POST['sex']=='female') echo 'Ms.';
else echo 'Guest';
echo $_POST['name'];
?>

以上兩者的差距在於

get方法方便使用者使用bookmark功能 因為送出的資料直接會出現在網址列上

post方法比較私密性 可以用於 登入系統等功能

 

3.Request 接受法

在end.php可將 $_GET或$_POST 改為 $_REQUEST,可接收兩種類型

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 milksleisure 的頭像
    milksleisure

    Milk's Leisure

    milksleisure 發表在 痞客邦 留言(0) 人氣()