Grrr, yet again, my form. The email part of it anyways.
So I want to email some general info to myself. A person fills out a form, and hits submit, for the message portion of the email, the variable is $message and i did something like this:
$message = "First Name: $firstname";
$message .= "Last Name: $lastname";
$message .= "Address";
Now, instead of doing it like this, cant I put it in an array? Would there be a benifit to an array (faster perhaps)?