javascript - Passing an array of multiple base64 strings -
there base64 strings in array need send via jquery's $.post()
php.
var base64s = [........]; $.post("getbase64.php", { 'base64s': base64s },
php:
$base64s = $_post['base64s']; //and used `$base64s[$i]` inside loop.
it works when there max 2 base64 strings. there maximum size array? or might reason?
Comments
Post a Comment