I am trying to figure out what is wrong with the PHP code that it is not sending copies to the form submitter. I have the following in my php file;
$submitter = $_POST['submitteremail'];
if ($submitter == '') $submitter = 'info@info.com';
if (strstr($submitter, "\n") || strlen($submitter) > 50) die("Begone, foul spammer.");
And then I have this <input type="hidden" name="submitteremail" value="yes">
in the html for the form. And this for the email text box
<p><label>Email: <span class="style34">___</span></label> <input name="Email" type="text" id="submitteremail" size="51"/></p>
From everything I know, which admittedly isn't a lot, this should work. I only have a very basic knowledge of PHP, so please go easy on me in your replies.
Thank you from the bottom of my heart for any help any of you can provide.