PHP/Development/HTTP POST VARS

Материал из Web эксперт
Перейти к: навигация, поиск

Get value from HTTP_POST_VARS

   <source lang="html4strict">

<html> <head> <title>Bulletin Board Message Screen</title> </head> <body>

Bulletin Board Example

<form action="GetValueFromHTTP_POST_VARS.php" method="post">

         Username:
         <input name="user_name" type="text" size="12" value="" />
         Message: 
<textarea cols="40" rows="6" name="message"></textarea>
         <input type="submit" value="Save Message" />

</form> </body> </html>


      </source>