home *** CD-ROM | disk | FTP | other *** search
Wrap
<HTML> <HEAD> <TITLE>Netplex - Example Form</TITLE> </HEAD> <BODY TEXT="#000000" BGCOLOR="#ffffff" LINK="#0000ff" VLINK="#0000bf" ALINK="#00ff00"> <H1><IMG SRC="images/world" ALIGN=ABSMIDDLE> Example Form</H1> This is an example form for testing the cgi-bin/form program. <HR> <FORM METHOD=POST ACTION="/cgi-bin/form"> <P> <INPUT TYPE=TEXT NAME="user"> </P> <P> <INPUT TYPE=RADIO NAME="computer" VALUE="archimedes">Archimedes <INPUT TYPE=RADIO NAME="computer" VALUE="riscpc">Risc PC <INPUT TYPE=RADIO NAME="computer" VALUE="other">Other </P> <P> <SELECT NAME="ram"> <OPTION VALUE="1Mb">1 Mb <OPTION VALUE="2Mb">2 Mb <OPTION SELECTED VALUE="4Mb">4 Mb <OPTION VALUE="8Mb">8 Mb <OPTION VALUE="16Mb">16 Mb <OPTION VALUE="32Mb">32 Mb </SELECT> </P> <P> <INPUT TYPE=CHECKBOX NAME="vram" VALUE="yes">VRAM </P> <P> <SELECT MULTIPLE NAME="harddisc"> <OPTION SELECTED VALUE="200Mb">up to 200 Mb <OPTION VALUE="500Mb">up to 500 Mb <OPTION VALUE="1Gb">up to 1 Gb <OPTION VALUE="2Gb">over 1 Gb </SELECT> </P> <P> <INPUT TYPE=SUBMIT VALUE="Submit this form"> <INPUT TYPE=RESET VALUE="Reset, and start again"> </P> </FORM> <HR> <B>Notes on Forms</B> <P>Form field names and values are escaped: space characters are replaced by '+' and then reserved characters are escaped, that is, non-alphanumeric characters are replaced by '%HH' - a percent sign and two hexadecimal digits representing the ASCII code of the character. Line breaks as in TEXTAREAs are represented as CR,LF pairs.</P> <P>Fields which remain unfilled may, or may not, be omitted by the browser.</P> <HR> <P><CENTER> <A HREF="13-cgi#examples"><IMG SRC="images/buttons/up" WIDTH=32 HEIGHT=32 BORDER=0 ALT="[ CGI Examples ]"></A> </CENTER></P> </BODY> </HTML>