Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
How does this form work?
Old 07-12-2010, 11:08 PM How does this form work?
Skilled Talker

Posts: 84
Trades: 0
I am trying to figure out how the simple form on this website works. Could someone take a look?

http://www.circularflyers.com
__________________

Please login or register to view this content. Registration is FREE
web-Inspect is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-13-2010, 05:26 AM Re: How does this form work?
Kelpie's Avatar
Skilled Talker

Posts: 82
Name: Andrew
Location: SW Scotland
Trades: 0
It looks to be just a standard form that posts to a cold fusion script. The form itself doesn't do anything special.
What don't you understand about it?
Kelpie is offline
Reply With Quote
View Public Profile
 
Old 07-13-2010, 09:49 AM Re: How does this form work?
Skilled Talker

Posts: 84
Trades: 0
Well I'm trying to have the form end the message to my email. If I recall the form needs a seperate file on the server that it uses to do that, however I'm not sure how to make that file and to make it functional.
__________________

Please login or register to view this content. Registration is FREE
web-Inspect is offline
Reply With Quote
View Public Profile
 
Old 07-13-2010, 03:08 PM Re: How does this form work?
Skilled Talker

Posts: 84
Trades: 0
Can anyone help?
__________________

Please login or register to view this content. Registration is FREE
web-Inspect is offline
Reply With Quote
View Public Profile
 
Old 07-13-2010, 05:13 PM Re: How does this form work?
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,380
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Just search for "contact form script" in whatever server side code your hosting supports.
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 07-16-2010, 03:10 AM Re: How does this form work?
OleTom's Avatar
Extreme Talker

Posts: 176
Location: Out there some where
Trades: 0
This is a very easy one http://www.form2emailscript.com it's just one file what makes it good is the email you put in that script is the only one that it will send email too "To keep the spammers from using it" to send out spam.

Plus you can ban ip addresses

Code:
<TABLE valign=center cellpadding="0" cellspacing="0">
<TR> <TD BGCOLOR=#ffffff width=800px><center>

<br/><h5><font  face=verdana>Enter Your Question or Comment in the form below I will get Back to you 

ASAP</font></h5>

<form method="post" action="form2email.php">
<input type="hidden" name="to" value="yourname@email.com">
<input type="hidden" name="subject" value="FROM YOUR SITE">
<input type="hidden" name="redirect" value="success.php">
<input type="hidden" name="name_reqd">
<input type="hidden" name="email_reqd">
<input type="hidden" name="message_reqd">
<table border="0"  cellspacing="0" cellpadding="5" width="700">
<TR><TD  VALIGN=TOP ><P ALIGN=LEFT><p>&nbsp;</p> <p>Name <br><input name="name" /> </p>                              

      <p>Email address<br><input name="email" /> </p> <p>Message<br><textarea rows="10" cols="60" 

name="message"></textarea> </p>  <p>&nbsp; <input type="submit" name="submit" value="Send" /> <input type="reset" 

name="reset" value="Reset" /> </p></p></form>                                    
</td></table>
__________________
Life is Good,OleTom

Please login or register to view this content. Registration is FREE

Last edited by OleTom; 07-16-2010 at 03:23 AM..
OleTom is offline
Reply With Quote
View Public Profile Visit OleTom's homepage!
 
Old 07-16-2010, 10:00 AM Re: How does this form work?
Junior Talker

Posts: 3
Name: chris
Trades: 0
try wufoo.com

eastiest form building site out there (imo)....you can use 3 forms for free....

chris
chris t is offline
Reply With Quote
View Public Profile
 
Old 07-16-2010, 10:31 AM Re: How does this form work?
Skilled Talker

Posts: 84
Trades: 0
What does the following code do?

Code:
action="form2email.php"
it seems that this isn't a one file form.
__________________

Please login or register to view this content. Registration is FREE

Last edited by web-Inspect; 07-16-2010 at 10:41 AM..
web-Inspect is offline
Reply With Quote
View Public Profile
 
Old 07-16-2010, 12:47 PM Re: How does this form work?
OleTom's Avatar
Extreme Talker

Posts: 176
Location: Out there some where
Trades: 0
Quote:
Originally Posted by web-Inspect View Post
What does the following code do?

Code:
action="form2email.php"
it seems that this isn't a one file form.
Well if you put the script I suggested http://www.form2emailscript.com in the same directory as the contact form your email gets sent.

a contact form is just 1/2 of what you need you also need a mail script. I suggested a easy one but there are thousands of different scripts that do the same thing

The one you had in the example uses "mail.cfm"

Code:
<form action="mail.cfm" method="post" name="contact">
__________________
Life is Good,OleTom

Please login or register to view this content. Registration is FREE

Last edited by OleTom; 07-16-2010 at 12:52 PM..
OleTom is offline
Reply With Quote
View Public Profile Visit OleTom's homepage!
 
Old 07-20-2010, 04:25 PM Re: How does this form work?
Junior Talker

Posts: 1
Trades: 0
It's a regular form calling a cfmail statement within a cfif... just basic cold fusion stuff... nothing fancy. I wanted to keep the whole thing real simple. Look up cfmail in the cold fusion docs.
alizarin is offline
Reply With Quote
View Public Profile
 
Old 07-23-2010, 05:58 AM Re: How does this form work?
Junior Talker

Posts: 3
Trades: 0
ASAP</font></h5>

<form method="post" action="form2email.php">
<input type="hidden" name="to" value="yourname@email.com">
<input type="hidden" name="subject" value="FROM YOUR SITE">
<input type="hidden" name="redirect" value="success.php">
<input type="hidden" name="name_reqd">
<input type="hidden" name="email_reqd">
<input type="hidden" name="message_reqd">
<table border="0" cellspacing="0" cellpadding="5" width="700">


I thank, this is use full for usl
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
adampaulson is offline
Reply With Quote
View Public Profile
 
Old 07-23-2010, 07:20 AM Re: How does this form work?
Junior Talker

Posts: 1
Trades: 0
Hi..
A form is an area that can contain form elements.
Form elements are elements that allow the user to enter information (like text fields, textarea fields, drop-down menus, radio buttons, checkboxes, etc.) in a form.
A form is defined with the <form> tag.

<form>
<input>
<input>
</form>
webmaster40 is offline
Reply With Quote
View Public Profile
 
Old 10-31-2010, 05:46 AM Re: How does this form work?
Novice Talker

Posts: 4
Name: errnoi
Trades: 0
thanks for solutions
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE
errnoi1 is offline
Reply With Quote
View Public Profile Visit errnoi1's homepage!
 
Reply     « Reply to How does this form work?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 1.10130 seconds with 12 queries