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
Form help for a newbie!!!!
Old 01-21-2007, 05:11 AM Form help for a newbie!!!!
Junior Talker

Posts: 2
Name: Claire
Trades: 0
Hi, I need help in creating my form. I'm new to DW and need to know how to create my Submit and Reset forms to do what they say on the tin!! Do I have to create an action/behaviour?? Do I need to use a CGI/PHP script?? And once I have that done, I need to ensure that the Submit button submits to a 'hidden' email address!! Sorry if this doesn't make much sense!! If it doesn't, I OBVIOUSLY need help!!!
Chica7373 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 01-21-2007, 06:43 AM Re: Form help for a newbie!!!!
McBone's Avatar
Super Talker

Posts: 149
Name: i have left
Location: i have left
Trades: 0
you need php script for that mate, you can use a html based form but that is a mailto:

for the hidden you need to php script it, if you check the php forum, there is loads of posts about forms, many people have the same problem, there should be actual script you can use also
McBone is offline
Reply With Quote
View Public Profile
 
Old 01-21-2007, 06:49 AM Re: Form help for a newbie!!!!
TheClue's Avatar
Novice Talker

Posts: 14
Name: Gabrio
Location: benevento, it
Trades: 0
even if you can build a "mailto" form that doesn't need a server side CGI/PHP script, the latter is obviously the best solution (ie you need, this is the case, to hidden the destination address)

the destination script, that will be executed by pressing submit button is set in action attribute of FORM field

Code:
<form method="post" action="mickeymouse.php">
<label for="name">enter your name</label>
<input type="text" name="name" />
<input type="submit" name="submit" />
</form>
from within your php script you will be able to access to FORM data using $_POST array. Ie a mickeymouse.php file that simply print out to screen the name would be

mickeymouse.php
Code:
<?php

print "your name is " . $_POST["name"];

?>
hope this help!
__________________
Gabrio "TheClue"


Please login or register to view this content. Registration is FREE
TheClue is offline
Reply With Quote
View Public Profile Visit TheClue's homepage!
 
Old 01-21-2007, 07:08 AM Re: Form help for a newbie!!!!
Experienced Talker

Posts: 41
Name: starlington
Trades: 0
It sounds that you are new to scripts, if so the best option for you is to use form generator. Its pretty easy to install & use. It says, phpFormGenerator is an easy-to-use tool to create reliable and efficient web forms in a snap. No programming of any sort is required. Just follow along the phpFormGenerator wizard and at the end, you will have a fully functional web form!

visit the site at http://phpformgen.sourceforge.net/ and find the download link on the top navigation bar.
starlington is offline
Reply With Quote
View Public Profile
 
Old 01-21-2007, 01:59 PM Re: Form help for a newbie!!!!
Tom_M's Avatar
Ultra Talker

Posts: 250
Name: Tom Maurer
Location: Pennslvania, USA
Trades: 0
If your host supports PHP, use that. It is very easy to send form result with PHP's built in mail() function. There are plenty of tutorials on the internet on how to do it.
Tom_M is offline
Reply With Quote
View Public Profile
 
Old 01-21-2007, 03:10 PM Re: Form help for a newbie!!!!
McBone's Avatar
Super Talker

Posts: 149
Name: i have left
Location: i have left
Trades: 0
yeah but you also need smtp on your space as well as php
McBone is offline
Reply With Quote
View Public Profile
 
Old 01-21-2007, 11:01 PM Re: Form help for a newbie!!!!
Experienced Talker

Posts: 31
Trades: 0
http://www.roscripts.com/forum/discu...dation/#Item_0

I hope this will help you. Try to follow the code and understand it. It's written in PHP
__________________

Please login or register to view this content. Registration is FREE
manilodisan is offline
Reply With Quote
View Public Profile
 
Old 01-24-2007, 05:38 PM Re: Form help for a newbie!!!!
Junior Talker

Posts: 2
Name: Claire
Trades: 0
Thanks to you all for your advice. I'm not ruling anything out at the mo, so will put all of the suggestions to use.

Thanks again!!
Chica7373 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Form help for a newbie!!!!
 

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 0.30028 seconds with 12 queries