2008-08-11から1日間の記事一覧

Kohana で POST メソッドを利用する。

http://localhost/kohana/ を Kohana のルートとする POST データを投げる URL は http://localhost/kohana/index.php/post/recieve/ とする。コントローラー名は「post」、メソッド名は「recieve」となる。 post.html <form method="post" action="/kohana/index.php/post/recieve/"> <label for="mail">メールアドレス<br /> <input id="mail" type="text" name="mail"></label></form>