Login   Register  
Icontem

File: xpAjaxExample.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Ricardo Luiz Rossi  >  JavaScript AJAX request  >  xpAjaxExample.php  >  Download  
File: xpAjaxExample.php
Role: Auxiliary data
Content type: text/plain
Description: xpAJAX Server
Class: JavaScript AJAX request
Send AJAX requests to a given Web server
Author: By
Last change: Description
Date: 2013-02-22 20:05
Size: 355 bytes
 

Contents

Class file image Download
<?php
	$parms = json_decode($_GET['parms']);
	echo("{'error':0"
	  . ",'msg':'Success'"
	  . ",'caption':'Address details for zip 10019'"
	  . ",'zip':'". $parms->zipcode ."'"
	  . ",'address':'West 58th street'"
	  . ",'neighborhood':'Columbus Circle'"
	  . ",'city':'New York'"
	  . ",'state':'NY'"
	  . ",'country':'USA'"
	  . "}"
	);
?>