original code is:
$subject = trim($subject);
which works fine.
That would display the subject of the email as "email" if "email" was entered into the subject form
How would I make it so it would be "name" 's question about "subject"
where "name" is another form.
Would it be something like
$subject = trim($name "s question about" $subject);
?
Note that $name is already defined.