12345678910111213 |
- <?php
- $array = array(
- array('value'=>0, 'text'=>'Guest'),
- array('value'=>1, 'text'=>'Service'),
- array('value'=>2, 'text'=>'Customer'),
- array('value'=>3, 'text'=>'Operator'),
- array('value'=>4, 'text'=>'Support'),
- array('value'=>5, 'text'=>'Admin'));
- echo json_encode($array);
- ?>
|