hey, kind of a noob to php. need help with line 17. this is a form email script. this is what i get when i submit.
Parse error: syntax error, unexpected T_STRING in /home/a8407233/public_html/sendmail.php on line 17

this is line 17
if (mail ( "apcorpinc123@gmail.com", "From: $email", "Feedback Form Results", "$message")) {

Try replacing it with the following:

if (mail ( "apcorpinc123@gmail.com", "From: ".$email, "Feedback Form Results", $message)) {

If that does not work then post lines 14 to 20 as one of the surrounding lines could be making a difference.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.