4 Comments

  1. MIKI

    Could you help me using the instruccion:

    $rssData = $arrayData[‘ArrayOfArrayOfString’][‘ArrayOfString’];

    in order to read this xml and to save the content of the tags.

    3459629
    60
    20100614

    Thank’s

  2. rantotthus

    thanks, just what i needed!

    i found a bug:
    $child[$name]= ($values[$i][‘value’])?($values[$i][‘value’]):”;
    this line should include an isset, like this
    $child[$name]= isset($values[$i][‘value’])?($values[$i][‘value’]):”;

    because 0 values were not present in the result.

Leave a Reply