12420e26df87093e1ab4c0d58405784972f4b7f2
[infodrom/cgilib] / cgiGetValue.3
1 .\" cgiGetValue - Return the value of a CGI variable
2 .\" Copyright (c) 1998,9 by Martin Schulze <joey@infodrom.north.de>
3 .\" 
4 .\" This program is free software; you can redistribute it and/or modify
5 .\" it under the terms of the GNU General Public License as published by
6 .\" the Free Software Foundation; either version 2 of the License, or
7 .\" (at your option) any later version.
8 .\" 
9 .\" This program is distributed in the hope that it will be useful,
10 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
11 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 .\" GNU General Public License for more details.
13 .\" 
14 .\" You should have received a copy of the GNU General Public License
15 .\" along with this program; if not, write to the Free Software
16 .\" Foundation, Inc.,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 .\"
18 .TH cgiGetValue 3 "17 August 1999" "CGI Library" "Programmer's Manual"
19 .SH NAME
20 cgiGetValue \- Return the value of a CGI variable
21 .SH SYNOPSYS
22 .nf
23 .B #include <cgi.h>
24 .sp
25 .BI "char *cgiGetValue (s_cgi *" parms ", const char *" name );
26 .fi
27 .SH DESCRIPTION
28 This routine returns a pointer to the value of a cgi variable.
29 Encoded characters (%nn) are already decoded.  One must not free the
30 pointer.
31
32 If
33 .B multiple
34 fields are used (i.e. a variable that may contain several values) the
35 value returned contains all these values concatenated together with a
36 newline character as separator.
37
38 .SH "RETURN VALUE"
39 On success a pointer to a string is returned.  If the variable wasn't
40 transmitted through CGI or was empty NULL is returned.
41
42 .SH "AUTHOR"
43 This CGI library is written by Martin Schulze
44 <joey@infodrom.north.de>.  If you have additions or improvements
45 please get in touch with him.
46
47 .SH "SEE ALSO"
48 .BR cgiGetVariables (3),
49 .BR cgiGetCookie (3),
50 .BR cgiGetCookies (3),
51 .BR cgiDebug (3),
52 .BR cgiHeader (3),
53 .BR cgiInit (3).