There are base64 strings in an array that I need to send via jquery's $.post()
to a php.
var base64s = [........];
$.post("getbase64.php",
{
'base64s': base64s
},
php:
$base64s = $_POST['base64s'];
//and used as `$base64s[$i]` inside a for loop.
It works only when there are max 2 base64 strings. Is there a maximum size for an array? or what might be the reason?