Thank you for replying so quickly.
Unfortunately, I have been to the links you provided and they didn't help. That is why I was hoping someone could break it down further.
Here is what I am trying...
<?
session_start();
$session_id = session_id();
// Attempt to connect to the MySQL database.
mysql_connect("localhost", "me", "whatever");
// ...attempt to select the database.
$select = mysql_select_db("promo");
// ...attempt to query the database.
$result = mysql_query ("SELECT amount_offer FROM amount")
or die ("Invalid query: ".ysql_error());
$num_rows = mysql_num_rows($result);
echo "&order_total = $result ";
// 'order_total' is a dynamic text field in a flash movie
?>
Thank you again!