Giter Club home page Giter Club logo

ajax-with-php's Introduction

AJAX

  • Asynchronous JavaScript and XML
  • Enables browser to send requests in the background

Ajax Components

  • HTML, CSS and DOM
  • XML
  • XMLHttpRequest
  • JavaScript

Ajax Requests

  • XMLHttpRequest
  • new
  • open(method, url, async)
  • send()

GET vs. POST

  • GET - retrieve data only
  • POST - sending/changing data

Ajax Responses

  • Text or XML
  • responseText
  • responseXML

Parse the Response

  • XML
  • JSON Example var person = JSON.parse(response)

States and Events

Ready States

readyState

  • 0 Connection created
  • 1 Connection Opened
  • 2 Request sent
  • 3 Response In Progress
  • 4 Request Complete

onreadystatechange

Detect Ajax Requests

// JavaScript
xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
// PHP
function is_ajax_request() {
	return isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest';
}

if(is_ajax_request()) {
	echo "Ajax response";
} else {
	echo 'Non-Ajax response';
}

Note

The headers are not secure, can be spoofed.

ajax-with-php's People

Contributors

josephmtinangi avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.