Well I can imagine two things that you want to do. Either display content from the public side of your profile or display info from the private side that you need to login to see.
If you want to in theory leech content from the public side. Since almost every element in the markup has an id and/or class associated with it. You could grab it via $ content = file_get_contents($url_to_myspace_page); and then because html/xhtml is in fact XML you could parse the string and find exactly what you want or you could curse over it via a regex if there is an expression.
Personally i like DOM and/or SimpleXML to parse it out as you can use Xpath and Xquery to grab exactly the elements you want.
Now,
If you are trying to get something from the login side. You could probably use CURL if it is enabled, and post your username and password to as the appropriate fields to the myspace login script and in the same session grab the data with the curl session from your logged in page. This of course is entirely a theory but i assume you could make something along this line work for login pages.