Re: Unescape URI

2006-09-12 Thread Matias Alejo Garcia
hift; my $req = Apache2::Request-new( $r );$req-content_type('text/xml; charset=KOI8-R');my $search_key = $req-param('key');my $search_type = $req-param('type');my $archive_search = $req-param('archive_search'); return Apache2::Const::OK;}As I understand, I have to unescape URI here to get right value

Unescape URI

2006-09-11 Thread Vladimir S. Tikhonjuk
-content_type('text/xml; charset=KOI8-R'); my $search_key = $req-param('key'); my $search_type = $req-param('type'); my $archive_search = $req-param('archive_search'); return Apache2::Const::OK; } As I understand, I have to unescape URI here to get right value of $req-param('key'). How to do