<html> <body>
<form action = "test_02.php" method = "get" > <input type="text" name="get_data1"> <input type="text" name="get_data2">
<input type="submit" name="GET送信" value="GET送信"> </form>
</body> </html>
<?php echo import_request_variables("G","global_"); // グローバル変数に格納されたデータを表示 echo $global_get_data1 , "\n"; echo $global_get_data2 , "\n"; ?>