rellapdrella

Untitled

Jul 26th, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <?
  2. $array[] = array(
  3.     'id' => '1',
  4.     'label' => 'Milano',
  5.     'value' => 'Milano'
  6. );
  7. $array[] = array(
  8.     'id' => '2',
  9.     'label' => 'Cagliari',
  10.     'value' => 'Cagliari'
  11. );
  12. $array[] = array(
  13.     'id' => '3',
  14.     'label' => 'Messina',
  15.     'value' => 'Messina'
  16. );
  17. $array[] = array(
  18.     'id' => '4',
  19.     'label' => 'Roma',
  20.     'value' => 'Roma'
  21. );
  22. $array[] = array(
  23.     'id' => '5',
  24.     'label' => 'Venezia',
  25.     'value' => 'Venezia'
  26. );
  27.  
  28. echo json_encode($array);
  29. ?>
  30. Un semplice ciclo foreach genera un array come sopra.
Advertisement
Add Comment
Please, Sign In to add comment