「PHP」post方式で値を送信するサンプル
書式
method="post" action="xxx"
サンプルコード
<form method="post" action="regform.php"> <input type="text" name="username"> <input type="text" name="password"> <input type="submit" value="登録"> </form>
Coding Changes the World
書式
method="post" action="xxx"
サンプルコード
<form method="post" action="regform.php"> <input type="text" name="username"> <input type="text" name="password"> <input type="submit" value="登録"> </form>