Hey, Here's my problemo. I've snipped most of the code to show you the outcome I want. So here's the current code. It's in a .cgi file. $To = ''; $Email = ''; if (defined $FORM{'To' }) { $To = $FORM{'To' }; delete $FORM{'To'}; } There's are two boxes on the HTML site. One with the name "To" and the other "Email Ending". I want the form to grab the input from both fields and spit it out with the full thing. For example, $To = Andrew $Email = @hotmail.com And the line: if (defined $FORM{'To' }) { $To = $FORM{'To' }; delete $FORM{'To'}; } will spit out Something like this? $To = $FORM{'To' }$FORM{'Email' } (In the line above, I want to add the two fields together) Any help appreciated