[Home] [By Thread] [By Date] [Recent Entries]
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] |

Cart



