bulrush Posted May 12, 2010 Share Posted May 12, 2010 My company rents space on a PHP hosting service. How can I tell if our host supports Ajax? I have a printout of phpinfo() in front of me. I ask because I'm considering getting a datagrid control, and most of them seem to use Ajax. Quote Link to comment Share on other sites More sharing options...
PFMaBiSmAd Posted May 12, 2010 Share Posted May 12, 2010 AJAX (Asynchronous JavaScript And XML) in itself is client-side and is independent of any server specifications. It just makes Asynchronous HTTP requests to web servers. As far as the web server is concerned, the HTTP request from AJAX is no different from any other HTTP request. However, since the data being requested is usually dynamically produced, you need some server side language to produce the response that is sent back to the client. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.