Not on the flash side of things, but I wanted to point out a major vulnerability your script has: SQL Injection.
You don't sanitize any quotes or anything before you insert raw data in to the database.
Add the following before your insert query..
code:
$name = mysql_real_escape_string($_POST['name']);
$shout = mysql_real_escape_string($_POST['shout']);