#----- Hash parse section shown below ----------------------
# Finally, we'll load the variables into an associative array
# so we can use it when we need it.
my %form_data;
if($form_data{$name})
{
$form_data{$name} .= "\t$value";
}
else
{
$form_data{$name} = $value;
}
print qq($name = $value
);
}