send page link to email

Discussion in 'PHP' started by sp360, Dec 19, 2007.

  1. #1
    Hi, i need a code that will send the page link to my email address when its clicked. For example, if someone clicks on the report link on one of the site pages, the link will automatically be emailed to my email. Anyone please?:confused:
     
    sp360, Dec 19, 2007 IP
  2. Doskono

    Doskono Peon

    Messages:
    153
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Ok, well this is well simple

    
    <?php
    if (isset($submitButton)){
    
    $getURL = $_SERVER['SCRIPT_NAME'];
    mail(mail data what you will want to send);
    }
    ?>
    
    PHP:
     
    Doskono, Dec 19, 2007 IP