• 締切済み

phpobjectとmysqlとの連携

flashとmysqlと連携したいのですが 使い方わからず下記サンプル動きません わかる方いましたら教えてください Example 1: // ** PHP ** // a function in the PHP class that does a simple query and returns the results to Flash function getRecords($dbName, $tableName) { $db = mysql_connect("localhost", "username", "password"); mysql_select_db($dbName, $db); // here's the query $result = mysql_query("SELECT * FROM $tableName "); // here's how we store the results in an array $rs = array(); while ($row = mysql_fetch_row($result)) { array_push($rs, $row); } return $rs; } // ** Actionscript ** // sets up the responder myFoo.getRecords_onResult = function(result) { var j = result.length; for (var i=0; i<j; i++) { // displays each row in the output panel trace("---Record "+i+"---") trace(result[i]); } }

みんなの回答

  • cybert
  • ベストアンサー率56% (18/32)
回答No.1

使いたいDBの名前は何ですか? 使いたいテーブルの名前は何ですか? 載せられている、コードからは分かりませんが、 ちゃんと入れてますよね? DBのユーザ名とパスワードは、あってますか? >使い方わからず下記サンプル動きません 何かエラーが出のでは無いですか? もうちょっと頑張ってみてください。それで、分からなかったら聞いてください。