Sorry..
I want to ask how to pass a array of PHP to
a array to javascript.
for example, i have a array of ten elements,
and each element is string data type, and have some special characters in them, so can
not use fowwlowing code :
var get = new Array();
<?php
$num = count($Pass);
for($i = 0 ; $i < $num ;$i++){
echo "get() = '".$Pass[$i]."';";
}
?>
So how cna i do this, thinks!