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.

PHP Forum


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



Freelance Jobs

Reply
Registration Script..
Old 07-18-2006, 01:43 PM Registration Script..
Novice Talker

Posts: 8
Name: Craig Howarth
Trades: 0
PHP Code:
 
<p align="center">Would you like to sign up to our unoffical Newcastle United weekly newsletter?<br />
    <
p align="center"><select name="newsletter">
    <
option value="yes">YesPlease</option>
    <
option value="no">NoThanks</option>
    </
select>

  
$yes="yes"
What im trying to do is when the person submits the form, if they have chosen to recieve the newsletter their email address gets mailed to my toon-army.co.uk email address.

I suppose it is "if $yes.." but i honestly have no idea about the rest of it.

Also, how do you make it so when they press submit, it submits to the database and is stored.

Thanks in advance.
toon-army.co.uk is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-18-2006, 03:16 PM Re: Registration Script..
Mad182's Avatar
Skilled Talker

Posts: 54
Name: Madars
Location: Latvia
Trades: 0
I think, it would be esier to store e-mail adreses in file, not to send them.

Forms:

HTML Code:
<form action="actionfile.php" method="post">
<select name="newsletter">
    <option value="yes">Yes, Please</option>
    <option value="no">No, Thanks</option>
</select>
<input type="submit" value="OK" />
</form>
File actionfile.php:

PHP Code:
<?php
if(!$var){ $var $_POST['newsletter']; } 
if(
$var=="yes") { 
//this will be executed if answer is yes  
} elseif($var=="no") { 
//this will be executed if answer is no 
} else {
//what should happen if something goes wrong 
}
?>
Something like that.
__________________
There's no place like 127.0.0.1

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
Mad182 is offline
Reply With Quote
View Public Profile Visit Mad182's homepage!
 
Reply     « Reply to Registration Script..
 

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