How do I process a form on my Plus Net website?
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- How do I process a form on my Plus Net website?
How do I process a form on my Plus Net website?
01-10-2007 11:47 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I have tried the Post/Mailto method, but the results are horrib le e.g. just one continous line of text seperated by commas.
Thanks,
Prudhoe
I've done the website/form in Dreamweaver, just in case this is relavent.
Re: How do I process a form on my Plus Net website?
01-10-2007 11:59 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
<form method="post" action="http://homepages.plus.net/cgi-bin/form">
<p>
Enter Your Email Address
<input type="text" name="email" size="30" />
<input type="hidden" name="realname" />
</p>
<p>
Your Name <input type="text" name="name" size="26"></p>
<p>Please enter your comments or message here</p>
<p>
<textarea rows="20" cols="50" name="text area">
</textarea>
</p>
<p></p>
<input name="submit0" type="submit" value="Submit form" />
<input name="reset" type="reset" value="Clear form" />
<input type="hidden" name="subject" value="feedback from my web page" />
<input type="hidden" name="recipient" value="youremail address" />
</form>
Re: How do I process a form on my Plus Net website?
02-10-2007 7:43 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I have tried doing what you said, but get the following error when clicking submit:
"There was no recipient or an invalid recipient specified in the data sent to FormMail. Please make sure you have filled in the recipient form field with an e-mail address that has been configured in @recipients. More information on filling in recipient form fields and variables can be found in the README file."
Do I need FormMail for this to work, and do I put it in my CGI web space or with my website files?
Re: How do I process a form on my Plus Net website?
02-10-2007 8:29 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
It uses a cgi formmail script that plusntet have made available for use on the www webserver (see the action line) and the contents of the form are 'posted' to the form mail script which then creates the email to you.
Also
<input type="hidden" name="recipient" value="youremail address" />
Did you replace the bit in red with your email address?
Re: How do I process a form on my Plus Net website?
02-10-2007 11:44 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
The reason it didn't work the first time is because I have my own domain name hosted by another company and redirected to my free-online/plus net account and was using this email address instead.
Is it possible to use a none free-online/plus net address to send the form to instead?
Is it possible to use your own form submission confirmation page instead of the default one? I have tried:
<INPUT TYPE=HIDDEN NAME="redirect" VALUE="http://www.mydomain.free-online.co.uk/confirmation.html" /> and
<INPUT TYPE=HIDDEN NAME="redirect" VALUE="confirmation.html" /> but neither works?
Re: How do I process a form on my Plus Net website?
02-10-2007 11:58 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
A better way would be to use something like PHP to process the results of the form, so that your e-mail address is never sent to the browser.
Re: How do I process a form on my Plus Net website?
03-10-2007 12:00 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: How do I process a form on my Plus Net website?
03-10-2007 12:05 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
http://www.securephpwiki.com/index.php/Email_Injection
Re: How do I process a form on my Plus Net website?
03-10-2007 12:08 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: How do I process a form on my Plus Net website?
03-10-2007 12:28 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: How do I process a form on my Plus Net website?
03-10-2007 10:12 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator

Re: How do I process a form on my Plus Net website?
03-10-2007 10:07 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
If im not supposed to put the email address in the html is there some idiot proof way of doing this for someone new to this. I dont know anything about PHP. Is there some ready made script that I can use. If there is one, do I put it in my cgi space or just website space. What script would be best for me... Nothing too complicated.
I have tried asking the helpdesk, but they just say that they can't help with this kind of thing. That being the case, how the heck are people supposed to find these things out. Not much of a help desk.
Re: How do I process a form on my Plus Net website?
03-10-2007 11:01 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
As far as a form in PHP is concerned, have a look at http://www.ibdhost.com/contact/. This doesn't block against e-mail injection, but is quite a good layout.
Also have a look at http://www.hotscripts.com/PHP/Scripts_and_Programs/Form_Processors/index.html. I haven't used any of them, but they sound promising.
As far as e-mail injection is concerned use PHP's eregi function to check for cc: bcc: \r and \n in the form's contents.
If all of this sounds too much, and you can put up with the advertising, why not use Bravenet's form service - it's free, and you don't have to do any programming.
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- How do I process a form on my Plus Net website?