Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Dustin Scott
Courses Plus Student 7,819 PointsSending more than 1 AJAX request to same PHP file
How I can send more than 1 AJAX JQuery request to same PHP file.
I cant put like this:
if(isset($_POST['value'])){}
It wont work.
But if I write it like this:
if(isset($_POST)){}
It will work, I want to send more than request. How I can do that?
1 Answer
Andrew McCormick
17,730 PointsCheck out Closures - stackoverflow- closures
followed by this one for the php side - http://www.googleclosure.com/ajax-recieving-json-data/
Dustin Scott
Courses Plus Student 7,819 PointsDustin Scott
Courses Plus Student 7,819 PointsSorry I didn't get that