Results 1 to 3 of 3

Thread: need a script to submit email address

  1. #1
    Join Date
    Apr 2008
    Posts
    47
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default need a script to submit email address

    Hi

    I am looking for a script so that visitors can register their email address to go on my mailing list. i just want a small box on the frontpage to insert the email address and a submit button rather than a seperate enquiry form

    any ideas please

    thanks

    Michael

  2. #2
    Join Date
    Mar 2008
    Posts
    122
    Thanks
    17
    Thanked 5 Times in 5 Posts

    Default

    hi, there is lots if perl and php scripts you can do this with.

    try here:

    http://www.thefreecountry.com/php/ma...-scripts.shtml

    hope i helped

  3. #3
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    creating the signup on the front page is a matter of you putting your html content where you want it. having the signup work be added to a "subscribers" list requires some sort of server-side language like PERL CGI / PHP / ASP etcetc...

    Before you create the form you need to be sure your server supports such scripts, which you can find out from your host. If there are some restrictions or guidelines you need to follow to use a "canned" email script from your host be sure to follow them or your necessities wont work.

    an example form signup is below
    Code:
    <form name="subscribeEmail" id="subscribeEmail" action="/path/to/script" method="post">
         <p>
              <input type="text" name="u_email" value="">
              <input type="submit name="u_subscribe" value="Subscribe">
         </p>
    </form>
    how that is than translated into the browser being added to the mailing list is up to the script that you submit this info to.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •