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 \ to <variable>Copied!
get-req cookie-count to cookie_c start-loop repeat cookie_c use i get-req cookie i to cookie_val pf-web "cookie %s\n", cookie_val @<br/> end-loopCopied!
get-req arg-count to ac pf-out "Total args [%ld]", ac start-loop repeat ac use i get-req arg-value i to av pf-out "%s\n", av end-loopCopied!
get-req header "My-Header" to hvalCopied!
get-req trace-file to trace_fileCopied!