Tag: json

  • Send HTML Form Data as JSON via Ajax

    Send HTML Form Data as JSON via Ajax

    There’s a lot of confusion among new developers on which format data should be sent to server.  Some dev’s create data string manually and some use jQuery’s API methods .serialize() and .serializeArray(). Our last tutorial shows how to use serializeArray() method to send array of objects to server via Ajax. Now taking it further what…

  • Create JSON From MySQL Using PHP and Parse it with jQuery

    Create JSON From MySQL Using PHP and Parse it with jQuery

    JSON(Java Script object notion), I think every web dev already know about JSON and the advantages of using it. Some common questions that every new developer asks are: why to use JSON? Where to use JSON?  How to use JSON in web applications? I came across a very good article on JSON vs XML. After reading…