I have this code in PHP:


Code:
<?php

include("connect.php");

    mysql_connect($db_host,$db_user,$db_password) or die(mysql_error());
    mysql_select_db($db_name) or die(mysql_error());
    $query = "SELECT message, author, header, date, ip 
FROM tempernews order by id DESC LIMIT 225";
    $result = mysql_query($query);

    while($r=mysql_fetch_array($result))    
    { 

        echo "<B>$r[header]</B> - ($r[date])<BR>$r[message]<BR>";        
    }
?>


How do I bring the same results this gives into flash?
(view results here )