Create A From

Form တစ္ခု ဖန္တီးဖို႕ အတြက္ <form> tag နဲ႕ အသံုးျပဳပါတယ္။ action attribute ကေတာ့ data ေတြကို ပို႕ေပးဖုိ႕ server address ျဖစ္ပါတယ္။

<!DOCTYPE html>
<html>
<head>
    <title>Simple Form</title>
</head>
<body>
    <form method="post" action="./post.php">
    </form>
</html>

အထက္ပါ code မွာ form ရဲ႕ method က post သံုးမယ္လို႕ ဆိုထား့ပါတယ္။ action ကေတာ့ post.php ကို form က data ေတြ ပို႕မယ္လို႕ ဆိုထားတာပါ။

Form မွာ method ၂ မ်ဳိးရိွပါတယ္။ post method နဲ႕ get method ပါ။ POST က data ေတြကို submit လုပ္တဲ့ အခါမွာ အသံုးျပဳျပီးေတာ့ GET method ကေတာ့ data ေတြကို ရွာေဖြ တဲ့ အခါမွာ အသံုးျပဳပါတယ္။

GET method နဲ႕ပို႕လိုက္ရင္

server.php?name=value1&name2=valu2

ဆုိျပီး query string နဲ႕ data ေတြကို ပို႕ပါတယ္။

POST method ဆုိရင္ေတာ့ HTTP message body ကေတာ့ data ေတြကို ပို႕ပါတယ္။

POST server.php
Host : example.com
name=value1&name2=valu2

results matching ""

    No results matching ""