Mondeo
07-01-2001, 01:49 PM
Hi,
I am trying to set up some forms on my site where users can submit information. I have used Dreamweaver to set up the form but I would like the results to be emailed to me. I have downloaded a few CGI scripts (FormMail for example) but I cant get any of them to work properly.
All I want is the form contents sent to me by email, required fields to be filled in and a redirect to tell the user if the submission was successful or not. I dont want to have to resort to using Frontpage but it seems like an option at the moment!!!!
Can someone please help? I am flexible about payment / compensation but I really need to get this working.
Tks
Mondeo :confused:
mickalo
07-01-2001, 02:00 PM
Hello,
We offer many custom programming services and I think we can setup something for you. If you like to contact me, be happy to discuss this in more details. Email at mickalo@thunder-rain.com or mickalo@bellsouth.net
Our Custom Progamming Services (http://wwwthunder-rain.com/services/index.html)
ffeingol
07-01-2001, 02:35 PM
Hello,
What you want is quite easy to do. Contact me (ffeingol@webmasters-resources.com AIM ffeingol or ICQ 70832366) and I'll help you get this going.
All I'd ask is a link back to webmasters-resources :)
Frank
Ericd
07-01-2001, 08:48 PM
Hi Mondeo,
Please contact me at eric@hostab.com, i can do it for you...inexpensive :)
Payable by InstaBill, so your credit card is secure.
If it's just installing FormMail and then creating the form to work with FormMail, then it should be around $15-20. ($10 for installing the CGI script and $5 or $10 for the form, depending if it's a simple form or not)
Eric :)
Tim Greer
07-02-2001, 06:59 AM
Mondeo,
This is very simple. In fact, so simple that I will help you at no charge and I ask for nothing in return. If you are still having a problem, email me at my address below.
(SH)Saeed
07-02-2001, 08:00 AM
It looks like the bids get lower and lower and the last one is free. Now how can I beat that?
Mondeo, I will pay you $20* if you let me help you :D and I ask for nothing in return.
* Deal was only valid until I posted this message.
cactus
07-02-2001, 01:09 PM
If you are using Formmail below are some tips to help you get started.
1)If you want to receive the info, in your Form Tag, add:
<INPUT TYPE=hidden NAME="recipient" VALUE="name@your domain.com"> to your Form.
2)If you want to redirect someone to another page of your site, after filling in the above details use:
<input type=hidden name="redirect" value="name.html">
in your Form
3)If you want them to fill in the required box for certain requirements use:
<input type=hidden name="required" value="name,position,company,address,tel,email,state,zipcode,country"> in your Form.
4)If you want the form to point to the cgi/perl script on your server use:
<FORM METHOD=POST
ACTION="http://www.yourdomain.com/cgi-bin/formmail.cgi">
in you Form
5)After someone has filled in the info, that person will have to click "submit" and the Form will be processed by your script on the server. Use the following in your Form:
<INPUT TYPE="submit" VALUE="Submit">
<INPUT TYPE="reset" VALUE="Reset">
Use of Form Tag to get info from someone is quite simple to implement for your html page and designing the format/layout is up to you.
The Formmail script can be downloaded at:
http://www.worldwidemart.com/scripts/
Below is a basic example that you can use to get info from someone and send it all to you(recipient)
<FORM METHOD=POST ACTION="http://www.yourdomain.com/cgi-bin/formmail.cgi">
<input type=hidden name="required" value="name,position,company,address,tel,email,state,zipcode,country">
<INPUT TYPE=hidden NAME="recipient" VALUE="name@yourdomain.com">
<input type=hidden name="redirect" value="redirect_page.html">
Name
<INPUT TYPE="text" NAME="name" MAXLENGTH=100> <BR>
<P>
<INPUT TYPE="text" NAME="position" MAXLENGTH=100> <BR>
<P>
Company
<INPUT TYPE="text" NAME="company" MAXLENGTH=100> <BR>
<P>
Address
<INPUT TYPE="text" NAME="address" MAXLENGTH=100> <BR>
<P>
State
<INPUT TYPE="text" NAME="state" MAXLENGTH=100> <BR>
<P>
Zipcode
<INPUT TYPE="text" NAME="zipcode" MAXLENGTH=100> <BR>
<P>
Country
<INPUT TYPE="text" NAME="country" MAXLENGTH=100> <BR>
<P>
Tel: No.
<INPUT TYPE="text" NAME="tel" MAXLENGTH=100> <BR>
<P>
Optional:
Fax No.
<INPUT TYPE="text" NAME="fax" MAXLENGTH=100> <BR>
<P>
E-mail
<INPUT TYPE="text" NAME="email" MAXLENGTH=100> <BR>
<P>
Any other comments:<BR>
<TEXTAREA NAME="comments" ROWS=5 COLS=16 >
</TEXTAREA><BR><BR>
<CENTER>
<INPUT TYPE="submit" VALUE="Submit">
<INPUT TYPE="reset" VALUE="Reset">
</CENTER>
</FORM>
Please note that if this is your first time using cgi/perl scripts which is "server-side" then the script need to be uploaded to your server in ascii mode(FTP) and most of the time the script needs to be edited for:
(i)Path to Perl.
(ii)File(s) and cgi-bin folder have to be chmod 755 for Unix/Linux server before the script can work.
(iii)Others such as whether the script can be run outside the cgi-bin directory as some servers allow that although it's a security risk.
(iv)Script privilege, to prevent others using your script at your bandwidth expense.
Hope this helps and good luck.
P/s
Please visit http://www.webmaster-forums.com/showthread.php?threadid=14569
it's about Formmail and you can also view someone's formmail layout to give you a better idea in creating the layout and design. You can also view the source code and see how it's coded by clicking View -> Source in IE .
cactus
07-02-2001, 02:20 PM
If you want to see the actual working of the script, it's at:
http://www.maniwin.com/wdform.htm
After you have completed the form and I will receive your full details and after that you will be redirected to a transit page and from there redirected again to make your payment.
when the payment processing is completed you will be directed to a thank you page.
Example:
http://www.maniwin.com/wdokay.htm
If you payment processing has problems, you will be redirected to:
http://www.maniwin.com/wdreject.htm
and try submitting again.
You can copy and use the code with my blessing.