2

actionscript 3 から php に変数を渡してから、Mysql に保存しようとしています。actionscript の変数は配列です。これを試してみると、Mysql に空のレコードが追加されていることがわかります。

 var loader : URLLoader = new URLLoader();
        var request:URLRequest = new URLRequest("http://localhost/new.php");
        request.method = URLRequestMethod.POST;
        var variables:URLVariables = new URLVariables();
        var st:String = answer.toString(",");
        variables.NAME= st;
        request.data = variables;
    loader.load(request);

phpコード:

 <?php
  mysql_connect("localhost", "root", "") or die(mysql_error()); 
  mysql_select_db("toefl") or die(mysql_error()); 
  $answer=$_POST['st'];
  $query = "INSERT INTO test(myanswer) VALUES('$answer')";
 mysql_query($query);
 ?>
4

2 に答える 2