Home › Forums › Back End › Chris’s simple contact form doesn’t work › Re: Chris’s simple contact form doesn’t work
February 19, 2013 at 5:54 pm
#125329
Participant
I have these lines:
$EmailFrom = “[email protected]”;
$EmailTo = “[email protected]”;
$Subject = “Nice & Simple Contact Form by CSS-Tricks”;
$Name = Trim(stripslashes($_POST));
$Subject = Trim(stripslashes($_POST));
$Email = Trim(stripslashes($_POST));
$Message = Trim(stripslashes($_POST));
but yours is different from mine I think.