How do i do this ?

Discussion in 'PHP' started by electron, Jun 5, 2007.

  1. #1
    hi, i am new in the arena of Web-designing & Web-management. I know HTML, Frontpage & CSS.
    I have a few Questions, please help me out. I'm sorry if some of them are stupid questions.

    1). What language should i learn to create/put a "Tell a friend" box in my webpage ?
    2). How do I ? Save a users email-id when he subscribes for a e-magazine ?
    3). Redirect user to a different site ?

    Is all this difficult to do ?

    Hoping some people to help me out.
    Thanks in advance :)
     
    electron, Jun 5, 2007 IP
  2. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #2
    For the first two questions, there are already pre-made scripts out there. Have a look at www.hotscripts.com

    As for the third question:
    
    <?php
    
    header('Location: http://www.example.com');
    exit();
    
    ?>
    
    PHP:
    And:
    www.php.net/header
     
    nico_swd, Jun 5, 2007 IP
  3. electron

    electron Well-Known Member

    Messages:
    249
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    #3
    Thanks for the info :)
     
    electron, Jun 5, 2007 IP
  4. jestep

    jestep Prominent Member

    Messages:
    3,659
    Likes Received:
    215
    Best Answers:
    19
    Trophy Points:
    330
    #4
    To send a page to a friend it depends on how you want to do it and exactly what needs to be accomplished. The easiest ways are going to be javascript or php.

    Here's a few examples. Personally, I would use a php script because the javascript version wont work if the visitor has javascript disabled. Also, you will want to figure out some sort of a message threshold filter so the form isn't used for spam.

    Javascript:
    http://javascript.internet.com/miscellaneous/e-mail-this-page-script.html
    http://simplythebest.net/scripts/DHTML_scripts/javascripts/javascript_119.html

    PHP:
    http://www.plus2net.com/php_tutorial/tell_friend.php
    http://www.tamingthebeast.net/articles3/tell-a-friend-script.htm
     
    jestep, Jun 5, 2007 IP
  5. electron

    electron Well-Known Member

    Messages:
    249
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    #5
    Thanks for the info :)
     
    electron, Jun 5, 2007 IP