0

製品の名前と価格と詳細が保存されているmysqlデータベースがあります。これはPHPを使用して行われます。そしてそれはうまくいきます。

AS3を使用して、製品の画像とその詳細をフラッシュにロードする必要があります。

これは私のPHPコードです:

<?php 
// Script Error Reporting
error_reporting(E_ALL);
ini_set('display_errors', '1');
?>
<?php 
// Run a select query to get my letest 6 items
// Connect to the MySQL database  
include "../config/connect_to_mysql.php"; 
$dynamicList = "";
$sql = mysql_query("SELECT * FROM products ORDER BY date_added DESC LIMIT 6");
$productCount = mysql_num_rows($sql); // count the output amount
if ($productCount > 0) {
    while($row = mysql_fetch_array($sql)){ 
             $id = $row["id"];
             $product_name = $row["product_name"];
             $price = $row["price"];
             $date_added = strftime("%b %d, %Y", strtotime($row["date_added"]));
             $dynamicList .= '<table width="100%" border="0" cellspacing="0" cellpadding="6">
        <tr>
          <td width="17%" valign="top"><a href="../product.php?id=' . $id . '"><img style="border:#666 1px solid;" src="../inventory_images/' . $id . '.jpg" alt="' . $product_name . '" width="77" height="102" border="1" /></a></td>
          <td width="83%" valign="top">' . $product_name . '<br />
            $' . $price . '<br />
            <a href="../product.php?id=' . $id . '">View Product Details</a></td>
        </tr>
      </table>';
    }
} else {
    $dynamicList = "We have no products listed in our store yet";
}
mysql_close();
?>
<?php echo $dynamicList; ?>

どんな助けでもいただければ幸いです。

ありがとう

4

1 に答える 1

0

1.- PHP と SQL を使用して XML ファイルを生成する

-> http://code.activestate.com/recipes/576499-converting-mysql-queries-to-xml/

2.- Flash/Flex を使用して、XML から取得したデータを表示します

-> http://www.republicofcode.com/tutorials/flash/as3xml/

3.- 想像力を働かせて素晴らしいものを作りましょう:

-> http://www.republicofcode.com/tutorials/flash/as3slideshow/

于 2013-03-18T21:07:16.917 に答える