1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How to fetch myspace photo from profile???

Discussion in 'PHP' started by thumbnailspro, Aug 12, 2008.

  1. #1
    I am wondering how to fetch and resize myspace photo from any profile in php and import it to an external site, kinda like mobstersadds dot com has done it?

    Have been trying to figure it out but no success... I know it can be done with php cause that's how they did it!

    THanks for the help!
     
    thumbnailspro, Aug 12, 2008 IP
  2. Jasber

    Jasber Peon

    Messages:
    28
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You would want to do something along the lines of...

    
    $sContent = file_get_contents("http://www.myspace.com/profile.html");
    preg_match_all('\<img src=(.*)\>', $sContent, $aMatches);
    
    $sImage = $aMatches[2];
    
    resizeImage($sImage);
    
    PHP:
    Please note this is the actual code for this but merely a blueprint on what you should be doing.

    You'd want to fix the regular expression to match the profile image and use an image resizing class (http://www.google.com/search?q=php image resize class).

    Perhaps if you posted some code you are using I could give a more specific answer.
     
    Jasber, Aug 12, 2008 IP
  3. thumbnailspro

    thumbnailspro Peon

    Messages:
    42
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thanks for the advice... I finally figured it out! Good luck!
     
    thumbnailspro, Aug 13, 2008 IP