OK, so I need PHP to run through a bunch of URLs that are being dynamically generated by javascript. My only experience with getting data using PHP so far has been using a website's url that had JSON data directly available via an API.
So, after many painful hours of jumping through all sorts of different hoops, I've finally gotten my data to the point where I have the URLs and an id in perfect JSON syntax (thanks JSON.stringify()!). Now, I'd really like to point PHP to a url in order to start using this JSON....but how?!
I'm hesitant to post this, but a little push in the right direction would be greatly appreciated. From what I'm looking at now, it seems like I may need to look more into POSTing this data to my server somehow? Should I be looking into AJAX?
Again, I know this is a real beginner question, so I'm looking more for slight nudges in the right direction rather than giving me a block of code that I need to use.
Thanks for any and all help!