[Home] [By Thread] [By Date] [Recent Entries]

  • From: "<<\"tei''>>>" <oscar.vives@g...>
  • Date: Thu, 2 May 2013 16:43:30 +0200

PHP and Javascript  can transfer simple data in a very simple and
straightforward way with JSON.

<?php

$mydata = array("ok"=>true, "points"=>array( 0=>455.11,1=>552.4,2=>552.9));
echo json_encode($mydata);

?>

<script type="javascript">

...
.../* jquery ajax object call */...
success: function(data){

   if( data["ok"]){
         process( data["points"] );
  }
}

Its hard to beat this simplicity, and probably not even worth it.
Something even more simple than this is probably too simple.

JSON is the best tool in this domain,  simple data passing between a
server and a webbrownser.



--
--
ℱin del ℳensaje.


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member