Add a URL field
ကၽြန္ေတာ္တို႕ေတြ form မွာ URL ကို လက္ခံလိုရင္ေတာ့ url type ကို အသံုးျပဳရပါတယ္။ url type ဟာ HTML5 မွာ ပါလာတဲ့ feature ျဖစ္ၿပီးေတာ့ form ကို submit လုပ္တဲ့ အခါမွာလည္း validation လုပ္ေပးပါတယ္။
<!DOCTYPE html>
<html>
<head>
<title>Simple Form</title>
</head>
<body>
<form method="post" action="./post.php">
Website :
<input type="url" name="website" size="20" maxlength=255>
<input type="submit">
</form>
</html>
URL အတြက္က email လိုပါပဲ။ type မွာ url ေျပာင္းထားလိုက္ပါတယ္။
Figure 8-17
Form submit လုပ္တဲ့ အခါမွာ URL မဟုတ္တဲ့ အခါမွာ error ျပေပးပါလိမ့္မယ္။
Figure 8-18