Page 2 of 2

Re: start using?

Posted: Wed Dec 18, 2013 3:38 am
by Simon
urlencode(base64encode(arrayencode(Your_Array1)))
Yes,yes of course!

Thanks Klaus

I guess I'll bug report the issue.

Simon

Re: start using?

Posted: Wed Dec 18, 2013 11:49 am
by Klaus
Hi Simon,

sorry, it was late so I forgot an even more effective method that I also used in my last project!
Put all your arrays into another array and simply save that array to file, works great here!
...
put tArray1 into tArrayArray[1]
put tArray2 into tArrayArray[2]
put tArray3 into tArrayArray[3]
...
You get the picture :D


Best

Klaus

Re: start using?

Posted: Thu Dec 19, 2013 3:45 am
by Simon
Hi Klaus,
Excellent!

I did try putting the arrays into an sqllite DB... what a pain! Forget it.

Sticking with arrayEncode :)

Simon