ASP
    
    
  
  
  
view release on metacpan or search on metacpan
		s/>/>/gi;
		s/</</gi;
		s/&#(\d+);/chr($1)/ge;
		s/&#x([0-9a-f]+);/chr(hex($1))/gi;
	} @args;
	$flag ? \@args : @args;
}
=head2 param EXPR [, EXPR]
Simplifies parameter access and makes switch from GET to POST transparent.
Given the following querystring:
	myscript.asp?x=a&x=b&y=c
    param()      returns ('x', 'y')
    param('y')   returns 'c'
    param('x')   returns ('a', 'b')
    param('x',1) returns 'a'
    param('x',2) returns 'b'
    
  
  
    unescapeHTML LIST
    Unescapes an HTML-encoded list.
    If passed an array reference, unescapeHTML will return a
    reference to the un-escaped array.
  param EXPR [, EXPR]
    Simplifies parameter access and makes switch from GET to POST
    transparent.
    Given the following querystring:
            myscript.asp?x=a&x=b&y=c
        param()      returns ('x', 'y')
        param('y')   returns 'c'
        param('x')   returns ('a', 'b')
        param('x',1) returns 'a'
        param('x',2) returns 'b'
    
  
  
  
( run in 0.721 second using v1.01-cache-2.11-cpan-a1d94b6210f )