URGENT ! --> show data through php in flash!

hey there,

I got stuck on a small problem. I have a guestbook running and everything works fine. There is only one thing. My messages in my guestbook are listed by date, but the date (and the name, comment,…) are just plain text, generated through php. After each message, there is a line that divides the messages.

This is the code:

<?
include ("connect.php");
$db=mysql_connect($host, $username, $password) or die (mysql_error());
mysql_select_db($dbnaam, $db) or die (mysql_error());

$output = "&guest=";

$sql=mysql_query("SELECT * FROM dw_news ORDER BY date DESC") or die (mysql_error());

while($row=mysql_fetch_array($sql))
{
$date="$row[date]";
$message="$row[message]";

$output.="<font color='#181D37'><u>$date</u></font><br><font color='#ffffff'>$message</font><br><br>________________________<br>";

}
echo $output;
?>

Here’s what I want to do: I want the title to have a pixelfont and a white small border in the background. So I want flash to show me the messages listed by date and all the dates on a white background with the message below.

I assume that I have to draw a small white rectangular with a dynamic textfield on it in Flash. But how can I assign that every title (+message below) has to have that white background?

And how can I have the 10 latest messages in a textfield that is scrollable?

Any tutorials/fla’s that I can use?

thanks!!!

L.