Is Ajax a faster programming language than PHP?
LUIS III asked the question:
I read somewhere that Ajax platforms in real-time.
Related posts:
- How do you guys master PHP Programming Language? SpoonHead asked the question: Hello! Well, for those experts there,...
- how to link image using PHP Programming language? Merlinda V asked the question: how can i link an...
- Computer programming. Is Python Similar to PHP? ? hold_on_and_stay_strong asked the question: I found this open source book:...
- which scripting language is the most used when it comes to Web Programming:ASP.NET,PHP,Perl,RubyonRails? Amitanshu G asked the question: Which scripting language is the...
- PHP programming question? Nathan asked the question: Okay, I am trying to create...
Filed Under Programming & Design |
Tagged With Ajax, Platforms, Programming Language
Comments
2 Responses to “Is Ajax a faster programming language than PHP?”
Ajax is not a programming language.
Ajax stands for asynchronous JavaScript and xml.
Long story short, you can code an ajax application using php, java or any other programming language. The advantage that ajax provides is that you can call back to your server asynchronously which means you don’t have to refresh the full page every time you need to fetch data from the server. This asynchronous call is made through javascript and the message it sends is formatted as xml (hence asynchronous javascript and xml). All this allows you to do funky things like auto-suggest, make forms controls appear instantly based on user input etc.
apples to orange
ajax is use on the client side and php on the server side