|
 |
|
Oracle Tips by Burleson |
APEX's OWA_UTIL
print_cgi_env
This prints all CGI environment variables
available to the CGI Gateway. This procedure can be placed directly
in PL/SQL region to display the values of all the CGI variables.
get_cgi_env( param_name in varchar2 ) return
varchar2;
This returns the value of a single CGI environment
variable
Example:
owa_util.get_cgi_env( 'HTTP_HOST' );
The above book excerpt is from:
Easy HTML-DB
Oracle Application Express
Create
Dynamic Web Pages with OAE
ISBN 0-9761573-1-4
Michael Cunningham & Kent Crotty
http://www.rampant-books.com/book_2005_2_html_db.htm |