Closed Thread
Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 36

Thread: PHP Vs AJAX

  1. #21
    Jordan Guest

    Re: PHP Vs AJAX

    I can't argue with that pure logic. It also p4wns Ruby.

  2. CODECALL Circuit advertisement

     
  3. #22
    Join Date
    Jul 2006
    Posts
    16,486
    Blog Entries
    75
    Rep Power
    143

    Re: PHP Vs AJAX

    Classic ASP sucks. Worse, it uses Classic ADO which REALLY sucks.
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  4. #23
    jwxie518's Avatar
    jwxie518 is offline Speaks fluent binary
    Join Date
    Jan 2009
    Location
    New York City
    Posts
    1,175
    Blog Entries
    1
    Rep Power
    19

    Re: PHP Vs AJAX

    To me, in a sentence to describe AJAX:

    AJAX is an add-on to the dynamic website language.

    It must uses with another language, such as basic HTML, JS, PHP, ect.
    The complications, I am not any expert.
    AJAX is an old scripts, I think it was used in the ASP, am I correct?

    LOL.
    http://i3physics.com/blog
    *-*-*-*__ C++ revolutionized the modern programming language, but what happen to C+? Programming is just a study of chemistry __*-*-*-*

  5. #24
    Join Date
    Sep 2007
    Location
    Karlstad, Sweden
    Posts
    3,082
    Blog Entries
    7
    Rep Power
    42

    Re: PHP Vs AJAX

    Quote Originally Posted by jwxie518 View Post
    To me, in a sentence to describe AJAX:

    AJAX is an add-on to the dynamic website language.

    It must uses with another language, such as basic HTML, JS, PHP, ect.
    The complications, I am not any expert.
    AJAX is an old scripts, I think it was used in the ASP, am I correct?

    LOL.
    AJAX is "Asynchronous JavaScript And XML" which makes it a technique used with JavaScript to load XML data into a HTML-page dynamically.

    How you create the XML is another thing, there is where the server side languages come in place, like php, asp/asp.net and others.
    __________________________________________
    I study Information Systems at Karlstad University when I'm not on CodeCall

  6. #25
    Join Date
    Jul 2006
    Posts
    16,486
    Blog Entries
    75
    Rep Power
    143

    Re: PHP Vs AJAX

    AJAX is not a language, it's a technique. It uses a client-side scripting language (JavaScript or VBScript) to request information from the server (processed using a client-side scripting language such as ASP/ASP.NET/ColdFusion/PHP/CGI/Other) and update the document based on the response (by manipulating the DOM).
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  7. #26
    jwxie518's Avatar
    jwxie518 is offline Speaks fluent binary
    Join Date
    Jan 2009
    Location
    New York City
    Posts
    1,175
    Blog Entries
    1
    Rep Power
    19

    Re: PHP Vs AJAX

    Quote Originally Posted by orjan View Post
    AJAX is "Asynchronous JavaScript And XML" which makes it a technique used with JavaScript to load XML data into a HTML-page dynamically.

    How you create the XML is another thing, there is where the server side languages come in place, like php, asp/asp.net and others.
    That's why I said in one sentence, LOL, it's an add-on. You don't need AJAX unless if you insist to make it use it.
    You can't develop a website or client application without the basic design approach. So, AJAX isn't a requirement at all. It's like an add-on technique. heheheee

    I can see facebook is a very good example using AJAX?
    http://i3physics.com/blog
    *-*-*-*__ C++ revolutionized the modern programming language, but what happen to C+? Programming is just a study of chemistry __*-*-*-*

  8. #27
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,174
    Blog Entries
    13
    Rep Power
    114

    Re: PHP Vs AJAX

    In the same way, CSS and even HTML is an add-on.

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  9. #28
    ValueForMoney is offline Newbie
    Join Date
    May 2009
    Location
    Google search engine
    Posts
    19
    Rep Power
    0

    Thumbs up Re: PHP Vs AJAX

    Quote Originally Posted by Xav View Post
    In the same way, CSS and even HTML is an add-on.
    Yes, true. Master HTML, CSS, PHP, AJAX and you can build any type of website :0

  10. #29
    barkermn01's Avatar
    barkermn01 is offline Newbie
    Join Date
    May 2009
    Location
    Leeds, UK
    Posts
    15
    Rep Power
    0

    Re: PHP Vs AJAX

    The best think you can do is make a multi lang makeup lang,

    E.G this is a verry basic makeup lang for a table
    Code:
    first name, second name:
    Martin, barker:
    Jhon, conna:
    Then make it so asp/.net php cfm(cold fusion) can all make you makeup lang, then just get ajax to read it and a javascript function to use it E.G
    Code:
    <script type="text/javascript">
    function 
    getArray(){
    rows ajaxReturn.split(':');
    for(
    0== rows.counti++){
      
    rows[i] = rows[i].split(',');
    }
    }
    </script> 
    This will give you a nested array E.G
    Code:
    rows[0] = [0] = martin, [1] = barker
    rows[2] = [0] = jhon, [1] = conna
    Its realy easy to make up a makeup lang with regEx (regual exspresions)

  11. #30
    harryboss is offline Newbie
    Join Date
    Aug 2009
    Posts
    3
    Rep Power
    0

    Smile Re: PHP Vs AJAX

    There seem to be a rather strange confusion about this topic, even in the replies within this very thread.

    Ajax, is simply, to the core, a technique used in JavaScript alone. It all boils down to a function to retrieve data asynchronously from the server. This data, which in AJAX stands for XML, though it can be html, JSON or any other format of choice. Some javascripts featuring ajax does not even use a severside programming language such as PHP, since it fetches RAW data from the server, such as .json, .html, .xml, .txt or whatever. But, of course, it is very usefull to use have a server side program to generate the data, such as with PHP.

    This whole process to integrate AJAX with your all day code in javascript can be really simplified with a library. There is a nice collection of such javascript libraries over at libzter.

Closed Thread
Page 3 of 4 FirstFirst 1234 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. SQL and AJAX
    By Jubal in forum PHP Development
    Replies: 23
    Last Post: 02-02-2009, 01:45 AM
  2. Ajax Pop-Up
    By Divya in forum AJAX
    Replies: 2
    Last Post: 01-07-2009, 08:06 PM
  3. .Net and Ajax
    By smithcarvo in forum ASP, ASP.NET and Coldfusion
    Replies: 2
    Last Post: 08-29-2008, 02:39 AM
  4. Will Ajax still be Ajax?
    By jessje in forum AJAX
    Replies: 3
    Last Post: 08-08-2008, 08:01 PM
  5. Need some AJAX help
    By Perro88 in forum AJAX
    Replies: 4
    Last Post: 02-14-2008, 03:44 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts