Next in thread →
Next in month →
Re: [xml-dev] XML's greatest cultural advantage over JSON
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.
Next in thread →
Next in month →