"I am using flash as3, php ve mysql"
Arasındaki fark nedir:
$username = $_POST['username'];
$password = md5( $_POST['password']);
ve
$username = mysql_real_escape_string( $_POST['username']);
$password = mysql_real_escape_string(md5( $_POST['password']));
I am sending ve retrieving variables from flash AS3 to php ve back to AS3 again. The former one (without mysql_real_escape_string) works fine. But the later one gets an error in flash. The error message is: "Parameter text must be non-null."
I (ekran) hem sonuç "echo" denedim, sonuç aynıdır. Çok garip .. Herkes herhangi bir fikrin var mı?