Hey if anybody know php and FLash Please help… I am trying to put an image from my database into a Flash MC using this php. The php works great in html, but i want that image to show up in a flash mc. If anybody knows how to call this script in flash that would be extremely helpful. Thanks in advanced.
Here is the php file content:
$products_query = tep_db_query(“select pd.products_name, p.products_image from " . TABLE_PRODUCTS . " p left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id where p.products_status = ‘1’ and p.products_id = '” . (int)$HTTP_GET_VARS[‘pID’] . “’ and pd.language_id = '” . (int)$languages_id . “’”);
$products = tep_db_fetch_array($products_query);