I need some one to build a simple flash movie on as3 air for android to load the output of my php file below!

PHP Code:
<?php
header
('Content-Type: text/html; charset=utf-8');
include(
'icecast.php');
echo 
'<img src="';
print_r($stream['artist']['top_albums']['0']['image']['3']);
echo 
'" width="210" height="209" >';
echo 
"<b>Title:</b>";
print_r($stream['info']['title']);
echo 
"\n";
?>
the output of this code is an image url and the song title, also i need the flash code to auto refresh let say every 10 seconds since the php code auto refresh and look for the current playing song!