boxes.php 198 B

1234567891011
  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. ?>