Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/02/2014, 22:49
Montes28
 
Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 14 años, 3 meses
Puntos: 6
Problemas para leer e imprimir array json

Problemas para leer e imprimir array json

{"val":["1","2","3"]}


Código PHP:
Ver original
  1. $recibo = $_REQUEST ['valor'];
  2. $array_json = json_decode($recibo);
  3. foreach ($array_json as $key => $value) {
  4.     echo "<stron>".$key."</strong>:".$value;
  5. }

asi estoy creando el array
Código Javascript:
Ver original
  1. $("#e9").on("change", function(e) {
  2.         var selections = (JSON.stringify({val:e.val}));
  3.         $("#valor").val(selections);
  4.  });