If you notice my slideshow on the side of the page, (yes it's the cute girls slideshow) You will know those images are taken from friendster (yeah, where can we find many pictures of cute girls beside friendster? myspace?) There are two ways,first by hotlinking (copy the image address) and keep the link on the slideshow. This way will be a problem if the picture is got deleted by the user, except if you save the picture and upload it by another website. The second way is the smart way, by reading the friendster profile page, I can take only the image address of the main image, powered by PHP. (note: please make sure that allow_url_fopen is enabled and DOMXML is installed in your webserver, you can check them all by looking the phpinfo(); method)

<?php
$profile="http://www.friendster.com/4260824"; //the friendster profile link
$doc = new DomDocument; //create a new DOM document
validateOnParse = true;
$doc->loadHTMLFile($profile); //load the profile
$img=$doc->getElementById('mainimage')->getAttribute('src'); //get the picture address
echo "<‎ img src=\"$img\" />"; //display the image on the browser
?>