return to first page linux journal archive
keywordscontents

Listing 3.

<HTML>
<Head>
<Title>Send a postcard!</Title>
</Head>

<Body>

<P>Now you can send a Web-based postcard to your
 friends!  Enter the appropriate information,and 
 e-mail will be sent to your friends indicating
 where they can pick up their postcard.</P>

<Form method="POST" 
	action="/cgi-bin/send-postcard.pl">

<P>Your name: <input type="text" 
	name="sender_name"> </P>
<P>Your e-mail address: <input type="text"
	name="sender_email"> </P>

<P>Recipient's name: <input type="text" 
	name="recipient_name"> </P>
<P>Recipient's e-mail address: <input type="text"
	name="recipient_email"> </P>

<P>Name of the graphic to insert: 
	<input type="text" 
	name="graphic_name"> </P>

<textarea name="postcard_text" wrap="hard"
	rows="20" cols="60">
</textarea>

<P><input type="submit" value="Send
postcard"></P>
<P><input type="reset" value="Clear current
 contents"></P>

</Form>
</Body>
</HTML>