Okay, first off, this is the "action" line that you have in your form right now:
<form action="mailto:suggestions@lansllc.com" method="post" enctype="text/plain" name="Suggestions" id="Suggestions">
That is incorrect and should look something like this:
<form action="/cgi-bin/filename.pl" method="post" enctype="text/plain" name="Suggestions" id="Suggestions">
Replace
"filename.pl" with whatever you named your script.
You also have your form fields incorrect. You have them looking like this:
<input name="textfield" type="text" class="Style22" value="Enter name (optional)" size="60">
<input name="textfield" type="text" class="Style22" value="Email" size="60">
The
"name" part of the tag has to be unique for each item (right now you have them all as "textfield"). So, your tags should be something more like this:
<input name="realname" type="text" class="Style22" value="Enter name (optional)" size="60">
<input name="email" type="text" class="Style22" value="Email" size="60">
The second tag has to have the word
"email" for the "name" be in ALL lowercase letters, because the script uses that variable. The "value" part can be initial caps, because that's only used by the form (not the script).
For the first tag, I used
"realname" because the script uses that variable, as well, but you can actually name that anything else (ex: name, fullname, etc.) because it isn't as important for that to be used by the script, as the "email" one is.
You need to make changes to your form everywhere you have your field names as
"textfield"After you are done with the changes, if your form still doesn't work, post back here.
Did you put your .pl script in the cgi-bin? Also, did you follow the instructions in my tutorial regarding setting the permission on that .pl file to 755? If you did not do those things, then you need to re-read my tutorial and follow the instructions step-by-step.
If you still can't get it to work after doing this, then IM me your username and password that you use to login to cPanel and I will go in and look to see what's the problem.