php form issue
php form issue
Out of context: Reply #3
- Started
- Last post
- 7 Responses
- welded0
You mail function is all jacked up. Take a look at the manual. http://ca2.php.net/manual/en/fun…
Basically it's mail('recipient email', 'subject', 'message', 'other stuff you might not need') so you'll probably want to use something like this:
, "Seminar Result", "$first_name, $last_name, $company", "From: $email_address" );