get-req \ errno | error | cookie-count | cookie <cookie index> \ | arg-count | arg-value <arg index> \ | header <header> | referring-url | method \ | content-type | trace-file | process-id | name \ | external-call | directory | source-file to <variable>Copied!
get-req cookie-count to cookie_c start-loop repeat cookie_c use i get-req cookie i to cookie_val print-format "cookie %s\n", cookie_val web-encode @<br/> end-loopCopied!
get-req arg-count to ac print-format "Total args [%ld]", ac start-loop repeat ac use i get-req arg-value i to av print-format "%s\n", av end-loopCopied!
get-req header "My-Header" to hvalCopied!
get-req trace-file to trace_fileCopied!