Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Chris’s simple contact form doesn’t work Re: Chris’s simple contact form doesn’t work

#125329
AlirezaM
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.