Home » Archimedes archive » Acorn User » AU 1997-Xmas B.adf » PD » NetPlex/!Netplex/!Help/HTML/form

NetPlex/!Netplex/!Help/HTML/form

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Archimedes archive » Acorn User » AU 1997-Xmas B.adf » PD
Filename: NetPlex/!Netplex/!Help/HTML/form
Read OK:
File size: 06BF bytes
Load address: 0000
Exec address: 0000
File contents
<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>
00000000  3c 48 54 4d 4c 3e 0a 0a  3c 48 45 41 44 3e 0a 3c  |<HTML>..<HEAD>.<|
00000010  54 49 54 4c 45 3e 4e 65  74 70 6c 65 78 20 2d 20  |TITLE>Netplex - |
00000020  45 78 61 6d 70 6c 65 20  46 6f 72 6d 3c 2f 54 49  |Example Form</TI|
00000030  54 4c 45 3e 0a 3c 2f 48  45 41 44 3e 0a 0a 3c 42  |TLE>.</HEAD>..<B|
00000040  4f 44 59 20 54 45 58 54  3d 22 23 30 30 30 30 30  |ODY TEXT="#00000|
00000050  30 22 20 42 47 43 4f 4c  4f 52 3d 22 23 66 66 66  |0" BGCOLOR="#fff|
00000060  66 66 66 22 20 4c 49 4e  4b 3d 22 23 30 30 30 30  |fff" LINK="#0000|
00000070  66 66 22 20 56 4c 49 4e  4b 3d 22 23 30 30 30 30  |ff" VLINK="#0000|
00000080  62 66 22 20 41 4c 49 4e  4b 3d 22 23 30 30 66 66  |bf" ALINK="#00ff|
00000090  30 30 22 3e 0a 0a 3c 48  31 3e 3c 49 4d 47 20 53  |00">..<H1><IMG S|
000000a0  52 43 3d 22 69 6d 61 67  65 73 2f 77 6f 72 6c 64  |RC="images/world|
000000b0  22 20 41 4c 49 47 4e 3d  41 42 53 4d 49 44 44 4c  |" ALIGN=ABSMIDDL|
000000c0  45 3e 20 20 45 78 61 6d  70 6c 65 20 46 6f 72 6d  |E>  Example Form|
000000d0  3c 2f 48 31 3e 0a 54 68  69 73 20 69 73 20 61 6e  |</H1>.This is an|
000000e0  20 65 78 61 6d 70 6c 65  20 66 6f 72 6d 20 66 6f  | example form fo|
000000f0  72 20 74 65 73 74 69 6e  67 20 74 68 65 20 63 67  |r testing the cg|
00000100  69 2d 62 69 6e 2f 66 6f  72 6d 20 70 72 6f 67 72  |i-bin/form progr|
00000110  61 6d 2e 0a 3c 48 52 3e  0a 0a 3c 46 4f 52 4d 20  |am..<HR>..<FORM |
00000120  4d 45 54 48 4f 44 3d 50  4f 53 54 20 41 43 54 49  |METHOD=POST ACTI|
00000130  4f 4e 3d 22 2f 63 67 69  2d 62 69 6e 2f 66 6f 72  |ON="/cgi-bin/for|
00000140  6d 22 3e 0a 0a 3c 50 3e  0a 3c 49 4e 50 55 54 20  |m">..<P>.<INPUT |
00000150  54 59 50 45 3d 54 45 58  54 20 4e 41 4d 45 3d 22  |TYPE=TEXT NAME="|
00000160  75 73 65 72 22 3e 0a 3c  2f 50 3e 0a 0a 3c 50 3e  |user">.</P>..<P>|
00000170  0a 3c 49 4e 50 55 54 20  54 59 50 45 3d 52 41 44  |.<INPUT TYPE=RAD|
00000180  49 4f 20 4e 41 4d 45 3d  22 63 6f 6d 70 75 74 65  |IO NAME="compute|
00000190  72 22 20 56 41 4c 55 45  3d 22 61 72 63 68 69 6d  |r" VALUE="archim|
000001a0  65 64 65 73 22 3e 41 72  63 68 69 6d 65 64 65 73  |edes">Archimedes|
000001b0  0a 3c 49 4e 50 55 54 20  54 59 50 45 3d 52 41 44  |.<INPUT TYPE=RAD|
000001c0  49 4f 20 4e 41 4d 45 3d  22 63 6f 6d 70 75 74 65  |IO NAME="compute|
000001d0  72 22 20 56 41 4c 55 45  3d 22 72 69 73 63 70 63  |r" VALUE="riscpc|
000001e0  22 3e 52 69 73 63 20 50  43 0a 3c 49 4e 50 55 54  |">Risc PC.<INPUT|
000001f0  20 54 59 50 45 3d 52 41  44 49 4f 20 4e 41 4d 45  | TYPE=RADIO NAME|
00000200  3d 22 63 6f 6d 70 75 74  65 72 22 20 56 41 4c 55  |="computer" VALU|
00000210  45 3d 22 6f 74 68 65 72  22 3e 4f 74 68 65 72 0a  |E="other">Other.|
00000220  3c 2f 50 3e 0a 0a 3c 50  3e 0a 3c 53 45 4c 45 43  |</P>..<P>.<SELEC|
00000230  54 20 4e 41 4d 45 3d 22  72 61 6d 22 3e 0a 3c 4f  |T NAME="ram">.<O|
00000240  50 54 49 4f 4e 20 56 41  4c 55 45 3d 22 31 4d 62  |PTION VALUE="1Mb|
00000250  22 3e 31 20 4d 62 0a 3c  4f 50 54 49 4f 4e 20 56  |">1 Mb.<OPTION V|
00000260  41 4c 55 45 3d 22 32 4d  62 22 3e 32 20 4d 62 0a  |ALUE="2Mb">2 Mb.|
00000270  3c 4f 50 54 49 4f 4e 20  53 45 4c 45 43 54 45 44  |<OPTION SELECTED|
00000280  20 56 41 4c 55 45 3d 22  34 4d 62 22 3e 34 20 4d  | VALUE="4Mb">4 M|
00000290  62 0a 3c 4f 50 54 49 4f  4e 20 56 41 4c 55 45 3d  |b.<OPTION VALUE=|
000002a0  22 38 4d 62 22 3e 38 20  4d 62 0a 3c 4f 50 54 49  |"8Mb">8 Mb.<OPTI|
000002b0  4f 4e 20 56 41 4c 55 45  3d 22 31 36 4d 62 22 3e  |ON VALUE="16Mb">|
000002c0  31 36 20 4d 62 0a 3c 4f  50 54 49 4f 4e 20 56 41  |16 Mb.<OPTION VA|
000002d0  4c 55 45 3d 22 33 32 4d  62 22 3e 33 32 20 4d 62  |LUE="32Mb">32 Mb|
000002e0  0a 3c 2f 53 45 4c 45 43  54 3e 0a 3c 2f 50 3e 0a  |.</SELECT>.</P>.|
000002f0  0a 3c 50 3e 0a 3c 49 4e  50 55 54 20 54 59 50 45  |.<P>.<INPUT TYPE|
00000300  3d 43 48 45 43 4b 42 4f  58 20 4e 41 4d 45 3d 22  |=CHECKBOX NAME="|
00000310  76 72 61 6d 22 20 56 41  4c 55 45 3d 22 79 65 73  |vram" VALUE="yes|
00000320  22 3e 56 52 41 4d 0a 3c  2f 50 3e 0a 0a 3c 50 3e  |">VRAM.</P>..<P>|
00000330  0a 3c 53 45 4c 45 43 54  20 4d 55 4c 54 49 50 4c  |.<SELECT MULTIPL|
00000340  45 20 4e 41 4d 45 3d 22  68 61 72 64 64 69 73 63  |E NAME="harddisc|
00000350  22 3e 0a 3c 4f 50 54 49  4f 4e 20 53 45 4c 45 43  |">.<OPTION SELEC|
00000360  54 45 44 20 56 41 4c 55  45 3d 22 32 30 30 4d 62  |TED VALUE="200Mb|
00000370  22 3e 75 70 20 74 6f 20  32 30 30 20 4d 62 0a 3c  |">up to 200 Mb.<|
00000380  4f 50 54 49 4f 4e 20 56  41 4c 55 45 3d 22 35 30  |OPTION VALUE="50|
00000390  30 4d 62 22 3e 75 70 20  74 6f 20 35 30 30 20 4d  |0Mb">up to 500 M|
000003a0  62 0a 3c 4f 50 54 49 4f  4e 20 56 41 4c 55 45 3d  |b.<OPTION VALUE=|
000003b0  22 31 47 62 22 3e 75 70  20 74 6f 20 31 20 47 62  |"1Gb">up to 1 Gb|
000003c0  0a 3c 4f 50 54 49 4f 4e  20 56 41 4c 55 45 3d 22  |.<OPTION VALUE="|
000003d0  32 47 62 22 3e 6f 76 65  72 20 31 20 47 62 0a 3c  |2Gb">over 1 Gb.<|
000003e0  2f 53 45 4c 45 43 54 3e  0a 3c 2f 50 3e 0a 0a 3c  |/SELECT>.</P>..<|
000003f0  50 3e 0a 3c 49 4e 50 55  54 20 54 59 50 45 3d 53  |P>.<INPUT TYPE=S|
00000400  55 42 4d 49 54 20 56 41  4c 55 45 3d 22 53 75 62  |UBMIT VALUE="Sub|
00000410  6d 69 74 20 74 68 69 73  20 66 6f 72 6d 22 3e 0a  |mit this form">.|
00000420  3c 49 4e 50 55 54 20 54  59 50 45 3d 52 45 53 45  |<INPUT TYPE=RESE|
00000430  54 20 56 41 4c 55 45 3d  22 52 65 73 65 74 2c 20  |T VALUE="Reset, |
00000440  61 6e 64 20 73 74 61 72  74 20 61 67 61 69 6e 22  |and start again"|
00000450  3e 0a 3c 2f 50 3e 0a 0a  3c 2f 46 4f 52 4d 3e 0a  |>.</P>..</FORM>.|
00000460  0a 3c 48 52 3e 0a 0a 3c  42 3e 4e 6f 74 65 73 20  |.<HR>..<B>Notes |
00000470  6f 6e 20 46 6f 72 6d 73  3c 2f 42 3e 0a 3c 50 3e  |on Forms</B>.<P>|
00000480  46 6f 72 6d 20 66 69 65  6c 64 20 6e 61 6d 65 73  |Form field names|
00000490  20 61 6e 64 20 76 61 6c  75 65 73 20 61 72 65 20  | and values are |
000004a0  65 73 63 61 70 65 64 3a  20 73 70 61 63 65 20 63  |escaped: space c|
000004b0  68 61 72 61 63 74 65 72  73 20 61 72 65 20 72 65  |haracters are re|
000004c0  70 6c 61 63 65 64 20 62  79 20 27 2b 27 20 61 6e  |placed by '+' an|
000004d0  64 20 74 68 65 6e 20 72  65 73 65 72 76 65 64 20  |d then reserved |
000004e0  63 68 61 72 61 63 74 65  72 73 20 61 72 65 20 65  |characters are e|
000004f0  73 63 61 70 65 64 2c 20  74 68 61 74 20 69 73 2c  |scaped, that is,|
00000500  20 6e 6f 6e 2d 61 6c 70  68 61 6e 75 6d 65 72 69  | non-alphanumeri|
00000510  63 20 63 68 61 72 61 63  74 65 72 73 20 61 72 65  |c characters are|
00000520  20 72 65 70 6c 61 63 65  64 20 62 79 20 27 25 48  | replaced by '%H|
00000530  48 27 20 2d 20 61 20 70  65 72 63 65 6e 74 20 73  |H' - a percent s|
00000540  69 67 6e 20 61 6e 64 20  74 77 6f 20 68 65 78 61  |ign and two hexa|
00000550  64 65 63 69 6d 61 6c 20  64 69 67 69 74 73 20 72  |decimal digits r|
00000560  65 70 72 65 73 65 6e 74  69 6e 67 20 74 68 65 20  |epresenting the |
00000570  41 53 43 49 49 20 63 6f  64 65 20 6f 66 20 74 68  |ASCII code of th|
00000580  65 20 63 68 61 72 61 63  74 65 72 2e 20 20 4c 69  |e character.  Li|
00000590  6e 65 20 62 72 65 61 6b  73 20 61 73 20 69 6e 20  |ne breaks as in |
000005a0  54 45 58 54 41 52 45 41  73 20 61 72 65 20 72 65  |TEXTAREAs are re|
000005b0  70 72 65 73 65 6e 74 65  64 20 61 73 20 43 52 2c  |presented as CR,|
000005c0  4c 46 20 70 61 69 72 73  2e 3c 2f 50 3e 0a 3c 50  |LF pairs.</P>.<P|
000005d0  3e 46 69 65 6c 64 73 20  77 68 69 63 68 20 72 65  |>Fields which re|
000005e0  6d 61 69 6e 20 75 6e 66  69 6c 6c 65 64 20 6d 61  |main unfilled ma|
000005f0  79 2c 20 6f 72 20 6d 61  79 20 6e 6f 74 2c 20 62  |y, or may not, b|
00000600  65 20 6f 6d 69 74 74 65  64 20 62 79 20 74 68 65  |e omitted by the|
00000610  20 62 72 6f 77 73 65 72  2e 3c 2f 50 3e 0a 0a 3c  | browser.</P>..<|
00000620  48 52 3e 0a 0a 3c 50 3e  3c 43 45 4e 54 45 52 3e  |HR>..<P><CENTER>|
00000630  0a 3c 41 20 48 52 45 46  3d 22 31 33 2d 63 67 69  |.<A HREF="13-cgi|
00000640  23 65 78 61 6d 70 6c 65  73 22 3e 3c 49 4d 47 20  |#examples"><IMG |
00000650  53 52 43 3d 22 69 6d 61  67 65 73 2f 62 75 74 74  |SRC="images/butt|
00000660  6f 6e 73 2f 75 70 22 20  57 49 44 54 48 3d 33 32  |ons/up" WIDTH=32|
00000670  20 48 45 49 47 48 54 3d  33 32 20 42 4f 52 44 45  | HEIGHT=32 BORDE|
00000680  52 3d 30 20 41 4c 54 3d  22 5b 20 43 47 49 20 45  |R=0 ALT="[ CGI E|
00000690  78 61 6d 70 6c 65 73 20  5d 22 3e 3c 2f 41 3e 0a  |xamples ]"></A>.|
000006a0  3c 2f 43 45 4e 54 45 52  3e 3c 2f 50 3e 0a 0a 3c  |</CENTER></P>..<|
000006b0  2f 42 4f 44 59 3e 0a 0a  3c 2f 48 54 4d 4c 3e     |/BODY>..</HTML>|
000006bf