2012-08-21から1日間の記事一覧

フォームの練習 其の3

フォームの練習7 <html lang="ja"> <head> <meta charset="UTF-8"> <title>フォームの練習</title> </head> <body> <form action="ex01.php" method="GET"> 1つめ:<input type="text" name="first"><br /> 2つめ:<input type="text" name="second"><br /> <input type="submit" value="送信する"> </form> </body> </html> フォームの練…

フォームの練習 其の2

フォームの練習4 <html lang="ja"> <head> <meta charset="UTF-8"> <title>フォームの練習</title> </head> <body> <form action="next_page.php" method="post"> <input name="keyword" type="text"> <input name="button" type="submit" value="検索"> </form> </body> </html> フォームの練習5

メールなどのフォームの場合のはpost,音の配信やグーグルマップなどはgetで出力してあげる.

フォームの練習1 フォームの練習2 フォームの練習3