Re: [nyphp-talk] Deep Linking with Ajax?

2006-12-17 Thread Jamie Wilkinson
+1 If all you want is to display multiple pieces of content inside a single page, you could also do good old-fashioned DHTML. Single page loads all content, and various nav/tab/link elements cause the content to display dynamically without the 'complexity' of AJAX. -- A: Yes. Q: Are you sure?

Re: [nyphp-talk] So who's using Ajax anway?

2006-11-12 Thread Jamie Wilkinson
> I'm not currently using a server-side php ajax framework. I do the > following check on incoming requests: > isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER > ['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest' > Stuff like this is why I love reading this list. I was just making my Ajax calls