RE: Apache::Request Multivalues

2004-07-09 Thread David Hofmann
something that proably make this far easier. David From: "Kreimendahl, Chad J" <[EMAIL PROTECTED]> To: "David Hofmann" <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> Subject: RE: Apache::Request Multivalues Date: Fri, 9 Jul 2004 10:05:22 -0500 Should return as an arr

RE: Apache::Request Multivalues

2004-07-09 Thread Kreimendahl, Chad J
ubject: Apache::Request Multivalues In CGI.pm you can use: %params = $q->Vars; To get the incoming form data and key words. Multivalued parameters are returned as a packed string, separated by the "\0" (null) character. How do you get multivalue data

Apache::Request Multivalues

2004-07-09 Thread David Hofmann
In CGI.pm you can use: %params = $q->Vars; To get the incoming form data and key words. Multivalued parameters are returned as a packed string, separated by the "\0" (null) character. How do you get multivalue data in Apache::Request? __