Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. COThanks for that help, I did not know that I'll give it a shot when I get home, but just to give you a bit more info, here is what I am trying to accomplish but this version is hard coded (static) I'm trying to pull the data from my JSON http://ggcc.tv/NewSite/cities/atlanta/AllThingsArePossible.html you can view the page source and check it out, sorry I can paste the code in a comment and not to mention from my iPhone - thanks for the help!
      singulars
    2. COOkay, so first a very quick semantic thing: your `myPlaylist` variable isn't JSON - it's a JS array which holds JS objects. Normally, that sounds rather pedantic, I get that... ...but here's why it's important: 1) JS accepts both `'` and `"`, while JSON accepts only `"` 2) JSON is a `string`: `"[\"one\",\"two\"]"` and is not an object or an array or anything else -- it's just a string that looks like one. The really, really easy solution here, seeing as you've already got `myPlaylist` written out, is to do something like `var json_playlist = JSON.stringify(myPlaylist);` then copy the string.
      singulars
    3. CO`myPlaylist` is perfectly-valid JS, so turning it into a JSON string is a snap. Then you just need to copy that string and that will become your JSON, which you can then `JSON.parse(json);` back into an object in JS, or `json_decode($json, true);` it into an associative array in PHP, or whatever languages it will be that you're going to use.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload