Book Image

Learning jQuery : Better Interaction Design and Web Development with Simple JavaScript Techniques

Book Image

Learning jQuery : Better Interaction Design and Web Development with Simple JavaScript Techniques

Overview of this book

Table of Contents (18 chapters)
Learning jQuery
Credits
About the Authors
About the Reviewers
Preface

Passing Data to the Server


Our examples to this point have focused on the task of retrieving static data files from the web server. However, the AJAX technique really comes into its own only when the server can dynamically shape the data based on input from the browser. We’re helped along by jQuery in this task as well; all of the methods we’ve covered so far can be modified so that data transfer becomes a two-way street.

Note

Since demonstrating these techniques requires interaction with the web server, we’ll need to use server-side code for the first time here. The examples given will use the PHP scripting language, which is very widely used as well as freely available. We will not cover how to set up a web server with PHP here; help on this can be found on the websites of Apache (http://apache.org/) or PHP (http://php.net/), or from your site’s hosting company.

Performing a GET Request

To illustrate this communication between client and server, we’ll write a script that only sends one dictionary...