Hi,

I have just get big issue that 'POST" and "GET" dose not work well in the case of compiling with swf9/10. It get occur using multibyte text data to send using those interface.
I wonder i miss any information about the attention when using swf9 over.
Any workaround?

simple test case
test.lzx
<?xml version="1.0" encoding="utf-8"?>
<canvas debug="true">
   <dataset name="d" src="http://<server>/test.php" querystring="post">

   <simplelayout/>
   <edittext name="ed"></edittext>
   <button>post
      <handler name="onclick">
        var dp = canvas.datasets.d;
        dp.setQueryString({aaa: ed.getText()} );
        dp.doRequest();
      </handler>
   </button>
</canvas>

test.php
<?php
$s = $_POST['aaa'];
//$s = $_GET['aaa'];

error_log( "$s\n", 3, "/tmp/php_error.log" );
?>

When input "ああああ”(this is jp, and the mean is 'AHAHAHAHA' :^)
The php program get "あああ".

When it compile with swf8, works fine.

thx


--
------------------------------------------
Ono Keiji
o...@net8.co.jp
------------------------------------------


Reply via email to