Good Free Softwares for "Bookmark this Site" & "Refers this Site to a Friend"

Discussion in 'General Marketing' started by Eric007, Jul 5, 2006.

  1. #1
    I'm looking for free softwares that allow users to:
    - bookmark a website by clicking on a button, and
    - refer a website to friends.

    Are there good ones out there?
     
    Eric007, Jul 5, 2006 IP
  2. Zapita

    Zapita Active Member

    Messages:
    220
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    88
    #2
    you can use this for "bookmark this site"

    <a href="javascript:var Loc='http://www.linkofyoursite.com';window.external.AddFavorite(Loc, 'text you want in the bookmark')"><font face="Arial, Helvetica, sans-serif">Bookmark this site</font></a>
    Code (markup):
    hope to be helpful :)
     
    Zapita, Jul 5, 2006 IP
    Eric007 likes this.
  3. TheNeeper

    TheNeeper Guest

    Messages:
    127
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Eric007, I have a bookmark script that works for Firefox, IE and Opera web browsers..

    Put this in the <HEAD> of your webpage:
    <script language=JavaScript1.2>
    function addBookmark(title,url) {
    if (window.sidebar) {
    window.sidebar.addPanel(title, url,"");
    } else if( document.all ) {
    window.external.AddFavorite( url, title);
    } else if( window.opera && window.print ) {
    return true;
    }
    }
    </SCRIPT>

    Now use this for the link:
    <a href="#" onmousedown="addBookmark('Your Site Name | Your Description','http://www.Your-URL.com')">Bookmark Us </a>

    That should work, let me know if it doesnt.
     
    TheNeeper, Jul 5, 2006 IP
    Eric007 likes this.
  4. xeno

    xeno Peon

    Messages:
    788
    Likes Received:
    22
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Useful for me. Thanks alot.
     
    xeno, Jul 5, 2006 IP
  5. TheNeeper

    TheNeeper Guest

    Messages:
    127
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #5
    No problem. You can always swap out the "Bookmark Us" and place and image there.
     
    TheNeeper, Jul 6, 2006 IP
  6. danielbruzual

    danielbruzual Active Member

    Messages:
    906
    Likes Received:
    57
    Best Answers:
    0
    Trophy Points:
    70
    #6
    for the "refer to a friend" script you can use php if you have it enabled in your hosting account with the mail() function.
     
    danielbruzual, Jul 6, 2006 IP
  7. Eric007

    Eric007 Peon

    Messages:
    411
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #7
    many thanks!
     
    Eric007, Jul 6, 2006 IP
  8. kuepper

    kuepper Peon

    Messages:
    80
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Refer a Friend script would be something like this:

    HTML:
    
    Friend's Name: <input type="text" name="name"><br />
    Friend's Email: <input type="text" name="email"><br />
    <input type="submit" value="Refer a Friend">
    
    HTML:
    PHP:
    
    <?php
    $name = mysql_escape_string($_POST['name']);
    $email = mysql_escape_string($_POST['email']);
    $message = $name." thinks you should visit our site at www.mysite.com!";
    mail($email, 'My Subject', $message);
    ?>
    
    PHP:
     
    kuepper, Jul 6, 2006 IP