いくつかの入力を含むフォームからphpスクリプトにデータを送信するにはどうすればよいですか?POSTメソッドofcを使用します。たとえば、私はそのようなフォームを持っています:
<form action="register.php" method="POST" name="registerform">
<span class="login">Nazwa użytkownika:</span>
<input type="text" class="login" placeholder="twój login" name="username">
<span class="login">E-mail</span>
<input type="text" class="login" placeholder="twój email" name="email">
<span class="login">Hasło</span>
<input type="password" class="login" placeholder="twoje hasło" name="password">
<span class="login">Powtórz Hasło</span>
<input type="password" class="login" placeholder="powtórz hasło" name="repassword">
<input type="submit" value="Rejestruj" class="button">
</form>
これをすべて同じフォルダにあるregister.phpに送信するにはどうすればよいですか?