Simple question for a novice

hi,

look at this php code and plz tell me how can i print the result on a flash animation.


<?
$server="localhost";
$user="user";
$pass="pass";
$database="database";

$connessione = @mysql_connect($server,$user,$pass);
$database = mysql_select_db($database,$connessione);


$select = "SELECT * FROM table ORDER BY 1";
$result = mysql_query($select);
$i=0;
while(list($id,$nom,$prenom) = mysql_fetch_array($result))
{
	$variable[$i]="$id|$nom|$prenom";
	$i++;
}

print("total=$i&variable=$variabel");
?>