form-editable-group.php 364 B

12345678910111213
  1. <?php
  2. $array = array(
  3. array('value'=>0, 'text'=>'Guest'),
  4. array('value'=>1, 'text'=>'Service'),
  5. array('value'=>2, 'text'=>'Customer'),
  6. array('value'=>3, 'text'=>'Operator'),
  7. array('value'=>4, 'text'=>'Support'),
  8. array('value'=>5, 'text'=>'Admin'));
  9. echo json_encode($array);
  10. ?>