I am wondering how to get some information from MySpace... Such as profile information. I want to create a stats program like profilesnoop.com but I can't seem to find out how to get the information of the users email or what not from it.
The PHP file_get_contents function is your friend here. It will simply read the contents of the profile page into a string, then you can search the string for the details you want to use.
Hope this helps.
Ew, never use that function to do that. CURL all the way. If you have a good web host, CURL will already be installed and enabled on your website. CURL has been benchmarked at 35% faster than file_get_contents(). If you don't have CURL, then you have no other choice. http://us3.php.net/curl
Never tried CURL, which is why I didn't suggest it
However I have used file_get_contents() before, and found it incredibly easy to manipulate information.
Alright.. I know how to do that.. But how do I get the users username. Like I am building a system that tracks stats and users that visit YOUR myspace profile. But would I get the users username who is viewing your profile?