Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
pooknikk #1
Passing value to Array
If I've got x = "test5"
How can I put the value of x to Array
list=["test1","test2","test3","test4"];
I'd try to use ---> list=[x,"test1","test2","test3","test4"] but is not work.
pooknikk Guest
-
passing array in the url
Hello there, I am unable to pass an array thought he url. Even the most simple array as in the code: $test = array(1,2,3,4); echo "<a... -
Array passing problem...
Hoping someone can point out my more than likely simple mistake here... function getBranchArray($desig,$branchArray){ $arrayResult =... -
passing an array
Hello, what is the best way to pass an array to a sub routine, IE. my @fields = qw(one two three); send_array(@fields); -
Passing Array Via CGI.pm
Hello all, I'm a Perl newbie here and have a quick question regarding CGI.pm. I have a CGI script that passes an array to another CGI script as... -
Passing a keyed Array via php.
Hi ACteon! On 18 Aug 2003 19:17:23 -0700, acteon@yahoo.com (Acteon) wrote: Use - form method="post" - $_POST etc. - no books as they are... -
Sivakanesh #2
Re: Passing value to Array
Well I just run you code and it works fine.
var list = new Array();
x = "test5";
list=["test1","test2","test3","test4"];
list=[x,"test1","test2","test3","test4"] ;
trace(list[0]);
trace(list[1]);
trace(list[2]);
trace(list[3]);
trace(list[4]);
Can you elaborate on your error a bit more?
Sivakanesh Guest



Reply With Quote

