の値を$_POST
ブラウザに出力できません。これはform_methods.php
:
<html>
<head>
<title>Form Methods</title>
</head>
<body>
<form method="post" action="formoutputpage.php">
<p><input type="text" name="greeting" size="15"></p>
<p><input type="text" name="name" size="15"></p>
<p><input type="submit" name="submit" value="Salutation"></p>
</form>
</body>
</html>
これは次のformoutputpage.php
とおりです。
<?
echo $_POST['greeting'];
echo " ".$_POST['name'];
echo "!";
?>