URL 引数を受け取る
index.php から test.php にリンクする際に 2 つの引数を渡しています。
index.html
<html> <a href="test.php?code=1250&name=Yamada">ここをクリック</a> </html>
test.php
<?php print($_GET['code'] . "<br>"); print($_GET['name'] . "<br>"); ?>
フォームから値を入力して送信する
index.php のフォームで入力した値を test.php に渡しています。
index.html
<html> <form method="GET" action="test.php"> <div>コード:<input type="text" name="code"></div> <div>名前 :<input type="text" name="name"></div> <input type="submit" value="決定"> <input type="reset" value="クリア"> </form> </html>
test.php
<?php print($_GET['code'] . "<br>"); print($_GET['name'] . "<br>"); ?>