[thelist] php add email to a mysql db

jon steele jjsteele22 at yahoo.com
Mon Aug 12 16:33:01 CDT 2002


Hey Andrew,

Sure you can.

Create a checkbox in the form:

<input type="checkbox" name="addToList" value="yes">

Then on the receiving page...

if(isset($addToList) && $addToList == "yes"){
   //assuming there's a form field called email
   $throwItIn = mysql_query("insert into mylistofemails values('".$_POST['email']."');
}


--- Andrew Maynes <andrew at uk-webdeveloper.co.uk> wrote:
> Hi all
>
> glad we are back online, is it just me or is everyoner getting 2-3 mails of the
> same post?
>
> anyway here is the question, I have a form that I would like to get the email
> inserted into a MySQL db is this possible?  I mean possible to use the existing
> form elements and adding a tick box sent me a weekly newsletter?
>
> Thank you
>
> Andrew
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.381 / Virus Database: 214 - Release Date: 8/2/02
>
> --
> For unsubscribe and other options, including
> the Tip Harvester and archive of thelist go to:
> http://lists.evolt.org Workers of the Web, evolt !


__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com



More information about the thelist mailing list