Thanks for Looking, but I guess I didn't explain myself well enough.
The form is used by an administartor to send messages to members.
The form is fairly average containing the fields: from_name, from_email, subject, message/body (SUBMIT).
once submit is click, these four data fields are passed to a php (phpmailer) script to send out the email to all the members. (btw, the script works fine)
What I need is to be able to allow the admin to use variables (based on the actual database) inside the message "textarea" box which can be parsed out and replaced with the data from the database.
example from another web site
//snip snip
FROM NAME :
FROM EMAIL :
You can use the following to insert variables in your message and subject : $ID, $intgold, $password, $referrer, $duedate, $startdate, $firstname, $lastname, $email, $phone
SUBJECT:
MESSAGE: //snip snip
Their form which I can view shows no hidden fields for these variables, it is just a basic form setup the standard way to pass the four fields.
I have been trying diffenert techniques I have seen but not working. I have seen some forms that allowed for variables to be used in the body/textarea so It must be possible. How do you insert variables into a message field and then parse them out later in the script??
I think that explains it...