<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
       "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Form Submission Test</title>
</head>
<body>

<h1>Sending a mail</h1>

<p>
Clicking on the Send button should open a mail window with a set of name=value pairs.
</p>

<form action="mailto:test@localhost" METHOD="POST" ENCTYPE="text/plain">
<p>
<select name="top5" size="5" multiple>
<option>Heino</option>
<option>Michael Jackson</option>
<option>Tom Waits</option>
<option>Nina Hagen</option>
<option>Marianne Rosenberg</option>
</select>
<input type="submit" value=" Send " name="submit button">
</p>
</form>

<h1>Posting data to pmwiki.org</h1>

<p>
This sends the form data to pmwiki.org, with parameters set up so that you'll see all the global variables.<br>
Scroll down until you find the $_POST array; it should contain the moral equivalent of the data that you saw in the mail test.
</p>

<form action="http://pmwiki.org?action=diag" METHOD="POST" ENCTYPE="multipart/form-data">
<p>
<select name="top5" size="5" multiple>
<option>Heino</option>
<option>Michael Jackson</option>
<option>Tom Waits</option>
<option>Nina Hagen</option>
<option>Marianne Rosenberg</option>
</select>
<input type="submit" value=" Send " name="submit button">
</p>
</form>


</body>
</html>