*Complete PHP noob here. I'm trying to write simple php that returns a tumblr avatar. Tumblr has an address you can navigate to, to retreve the blog avatar. For example navigating to:
http://api.tumblr.com/v2/blog/david.tumblr.com/avatar/512
leads to this:
http://27.media.tumblr.com/avatar_a963092d964b_512.png
I simply want the .png address as a variable. Here's what I got but it just spits out a big page of strange text.
<?php
$avatar = file_get_contents("{the link above, I can only have two hyperlinks in a post}");
echo $avatar;
?>
I assume the file_get_contents is not what I want to use but I don't know what to use.