Hiya..

What you need to do is..
1: Use 'Load/Unload Movie-->Load Variables' to get the info from the web server. This has to be URLencoded information. What that means is that is needs to be name=value pairs seperated by &s.
2: The Perl script should query the DB, get a record set, and then send the info back to the Flash movie. The easiest way of doing this is, once you have your connection open (eg adodb.connection) writing the whole lot of name=value pairs to a string buffer and sending them off..
Something like..

$string = "buffer=true";
for ($x=1;$x>10;$x++) {
$buffer = join('', $buffer, '&', $field[$x], '=', $value[$x]);
}
print "Content Type=application/urlencoded\n\n";
print $buffer;

Obviously this assumes that you have your info in two arrays called @array and @value.

Anyway, its something to be going on with..

Chris