Conner85
04-14-2008, 08:39 AM
I've been searching aimlessly to find a way to link the default picture on MySpace to the profile picture area in my users' profiles. Pretty much all they have to do is type in their MySpace user name and their default picture shows up. As well as auto-updating every time they change their default picture on MySpace. I finally came across PHP code, but I have NO CLUE how to turn it into a plugin. If anyone could help, it would be awesome.
<?php
function grab_main_pic($url)
{
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
if (preg_match('/<a\s+id="ctl00_Main_ctl00_UserBasicInformation1_hlDefaultIm age"[^>]+><img\s+src="([^"]+)"/si', curl_exec($ch), $mainpic))
{
return $mainpic[1];
}
return 'Failed to grab main pic.';
}
echo grab_main_pic('http://www.myspace.com/$userinfo[field24]');
?>
<?php
function grab_main_pic($url)
{
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
if (preg_match('/<a\s+id="ctl00_Main_ctl00_UserBasicInformation1_hlDefaultIm age"[^>]+><img\s+src="([^"]+)"/si', curl_exec($ch), $mainpic))
{
return $mainpic[1];
}
return 'Failed to grab main pic.';
}
echo grab_main_pic('http://www.myspace.com/$userinfo[field24]');
?>