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

Popular posts from this blog

python - pip install -U PySide error -

arrays - C++ error: a brace-enclosed initializer is not allowed here before ‘{’ token -

cytoscape.js - How to add nodes to Dagre layout with Cytoscape -