Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / component-loader / boxes.php
1 <?php
2 $total = $_POST["total"];
3 $items = array();
4 for ($i = 1; $i <= $total; ++$i) {
5     array_push($items, array(
6         'flex'=>1,
7         'html'=>"Item $i"
8     ));
9 }
10 echo json_encode($items);
11 ?>