hosted by liquidweb


Go Back   Web Hosting Talk : Advertising Forums : Web Hosting Related Offers & Requests : Other Offers & Requests : CGI / form design help needed
Reply

Other Offers & Requests This forum is intended for the posting of related services and products and for participants to request quotes and offers on related services. Please read the Announcement within before posting. You need 10 (relevant, non-advertising, non-fluff) posts in other forums and 7 days of membership before starting a thread in this forum.
Forum Jump

CGI / form design help needed

Reply Post New Thread In Other Offers & Requests Subscription
 
Send news tip View All Posts Thread Tools Search this Thread Display Modes
  #1  
Old 07-01-2001, 01:49 PM
Mondeo Mondeo is offline
Junior Guru Wannabe
 
Join Date: Jun 2001
Location: United Kingdom
Posts: 44

CGI / form design help needed


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

Reply With Quote
Sponsored Links
  #2  
Old 07-01-2001, 02:00 PM
mickalo mickalo is offline
Newbie
 
Join Date: Jul 2001
Location: N.W. Iowa
Posts: 12
Thumbs up

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://www.thunder-rain.com
Thunder Rain Internet Publishing
Internet Solutions that Work!


Last edited by mickalo; 07-02-2001 at 07:04 AM.
Reply With Quote
  #3  
Old 07-01-2001, 02:35 PM
ffeingol ffeingol is offline
Community Guide
 
Join Date: Jun 2001
Location: Earth
Posts: 1,246
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

__________________
Umbra Hosting
cPanel | Softaculous | CloudLinux | R1Soft | Ksplice
Web Hosting, Reseller Hosting, VPS, Dedicated Servers, Colocation
UmbraHosting.com

Reply With Quote
Sponsored Links
  #4  
Old 07-01-2001, 08:48 PM
Ericd Ericd is offline
Aspiring Evangelist
 
Join Date: Apr 2001
Location: America
Posts: 375
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

__________________
Eric Desroches - eric@american-hosting.net
American Hosting for Quality Shared Web Hosting and Custom Reseller Solutions
http://www.american-hosting.net/

Reply With Quote
  #5  
Old 07-02-2001, 06:59 AM
Tim Greer Tim Greer is offline
<insert something witty>
 
Join Date: Apr 2000
Location: California
Posts: 3,051
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.

Reply With Quote
  #6  
Old 07-02-2001, 08:00 AM
(SH)Saeed (SH)Saeed is offline
Web Hosting Master
 
Join Date: Dec 2000
Posts: 1,280
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 and I ask for nothing in return.


* Deal was only valid until I posted this message.

__________________
Saeed Sarvi

Reply With Quote
  #7  
Old 07-02-2001, 01:09 PM
cactus cactus is offline
Web Hosting Master
 
Join Date: May 2001
Posts: 1,005
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/show...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 .


Last edited by cactus; 07-02-2001 at 01:22 PM.
Reply With Quote
  #8  
Old 07-02-2001, 02:20 PM
cactus cactus is offline
Web Hosting Master
 
Join Date: May 2001
Posts: 1,005
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.

Reply With Quote
Reply

Related posts from TheWhir.com
Title Type Date Posted
Lead Generation Part 1 – Form Fills Blog 2012-11-16 09:03:48
Web Host GeekStorage Opens New Office in Oklahoma, Names Account Manager Web Hosting News 2012-07-31 14:04:33
Power Assure CTO: Some Efficiency Ratings Miss Incremental Improvements Web Hosting News 2011-08-18 18:57:44
Landing Page Practices to Improve Marketing ROI with Tim Ash of SiteTuners Web Hosting News 2011-08-09 22:20:06
Integrated Design Group Names Data Center Veteran Chief Technology Advisor Web Hosting News 2011-06-28 14:22:36


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes
Postbit Selector

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump
Login:
Log in with your username and password
Username:
Password:



Forgot Password?
Advertisement:
Web Hosting News:



 

X

Welcome to WebHostingTalk.com

Create your username to jump into the discussion!

WebHostingTalk.com is the largest, most influentual web hosting community on the Internet. Join us by filling in the form below.


(4 digit year)

Already a member?