Recommend to friend

Is there a way to send the zenphoto's url to a friend? Any hack or add-on?

Thanks in advance.

Comments

  • Have you used the tried and true "file/send/link by email" menu from Internet Explorer or the "file/send link..." menu of Firefox? (If you are using a different browser, I am sure it has the equivalent.)

    If you wish a link within your album, I have not seen that done yet.
  • I have created Share a friend module but as a separate php module.

    You can look at sample http://actress.bollysite.com/kingfisher-calendar/kf2005_2.jpg.php
  • can you share this module? i need a similar feature for my site...
  • It's a simple php page I called with in overlay Iframe (as orkut is doing for photo uploading). In which I am passing some parameters like image location & ID.

    Page contains tell a friend form. That user has to fill. In the back-end it's getting all the parameter of HTML-form & passing to php mailer (http://phpmailer.sourceforge.net) for sending HTML mail.
  • If you want, current page URL to pass it in tell a friend form php file.

    Use following code:-
    <?php
    $server = $_SERVER['HTTP_HOST'];
    $uri = $_SERVER['REQUEST_URI'];
    $pageURL = 'http://'.$server.$uri;
    ?>

    < a href="tellafriend.php?url=<?=$pageURL?>" ...
Sign In or Register to comment.