diff options
author | John Ankarström <john@ankarstrom.se> | 2021-09-17 17:02:29 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-09-17 17:03:57 +0200 |
commit | 2810ad72aeb973a898034d6875922284062c5ce0 (patch) | |
tree | 2c7555b79054d57350cc4136e3215094c9b4b685 /example | |
parent | 38f8e2242353711d5c87c58f3831306934d2e6b7 (diff) | |
download | cforum-2810ad72aeb973a898034d6875922284062c5ce0.tar.gz |
Rework query functions
Now, the value/parameter retrieval function handles both GET and
POST parameters.
Diffstat (limited to 'example')
-rwxr-xr-x | example | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#!/usr/bin/env perl + +print while <DATA>; + +__END__ +Content-Type: text/html + +<form action="cforum" method="post"> + <p><label for="name">Name</label><input type="text" name="name" value="" id="name"> + <p><textarea name="text" rows="8" cols="40"></textarea> + <p><input type="submit" value="Continue →"></p> +</form>
\ No newline at end of file |