Sorry for the confusion...
The user imputs their text into PHP pages. Im guessing the text extracted from the database table will need to be converted to allow flash to read it even if "&s" are present. There will most likely be "&s" in the "entry" field of the table but if there is a way to check all fields and change/replace that would be cool too.
Here is a sample of the code I'm working with (any help or direction will be great):
<?php
mysql_connect ("****", "****", "****");
mysql_select_db ("****");
$qResult = mysql_query ("SELECT * FROM **** ORDER BY id DESC");
$nRows = mysql_num_rows($qResult);
$rString ="&n=".$nRows;
for ($i=0; $i< $nRows; $i++){
$row = mysql_fetch_array($qResult);
$rString .="&id".$i."=".$row['id']."&"."&date".$i."=".$row['date']."&"."&entry".$i."=".$row['entry']."&";
}
echo $rString."&";
?>