Hallo I need simple parsing code for a "get" not a "post". that will yeild 4 or 5 variables. Lou
#I know I need to get rid of the "&"
# Split the name-value pairs
@pairs = split(/&/, $ENV{'QUERY_STRING'});
foreach $pair (@pairs)
{
# Split the pair up into individual variables.
($name, $value) = split(/=/, $pair);
}
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
