Tom,
Your repost of the $quote. thing was what did it.
I manipulated my programtype array data to look like this as a string:
["11", "10", "9", "16", "14", "1"]
then I wrote it out as
"programname":' programname :$quote. /', "programtype":' programtype /',
without the outside quoting.
That gives me the output I want
, "programname":"name" , "programtype":["1", "16"]
except that (unlike you, and I know this will probably tick you off - LOL) I HATE with a passion the commas at the beginning of the line and would really prefer
"programname":"name", "programtype":["1", "16"],
I know the arguments, I just like them at the end. I don't know how to move them so i guess I am stuck until I figure that out.
Thanks for tweaking my brain.
... View more