Create a perl hash from a query string
Example:
use URI::Escape qw( uri_unescape ); my $query_string = "num=1&colour=red%26blue&size=12&item=skirt"; my %hash = uri_unescape( split /[&=]/, $query_string );
Perl, MySQL, Money and Food
Example:
use URI::Escape qw( uri_unescape ); my $query_string = "num=1&colour=red%26blue&size=12&item=skirt"; my %hash = uri_unescape( split /[&=]/, $query_string );