Re: [PHP] Arrays

2013-02-25 Thread Karl DeSaulniers
Never mind. I found a different function that reads out the children as well into the array. function xml_parse_into_assoc($data) { $p = xml_parser_create(); xml_parser_set_option($p, X

Re: [PHP] Arrays

2013-02-25 Thread Karl DeSaulniers
On Feb 25, 2013, at 7:50 PM, Jim Lucas wrote: On 02/25/2013 05:40 PM, Karl DeSaulniers wrote: Hi Guys/Gals, If I have an multidimensional array and it has items that have the same name in it, how do I get the values of each similar item? EG: specialservices => array( specialservice => arr

Re: [PHP] Arrays

2013-02-25 Thread Karl DeSaulniers
On Feb 25, 2013, at 7:48 PM, Adam Richardson wrote: On Mon, Feb 25, 2013 at 8:40 PM, Karl DeSaulniers > wrote: Hi Guys/Gals, If I have an multidimensional array and it has items that have the same name in it, how do I get the values of each similar item? EG: specialservices => array(

Re: [PHP] Arrays

2013-02-25 Thread Jim Lucas
On 02/25/2013 05:40 PM, Karl DeSaulniers wrote: Hi Guys/Gals, If I have an multidimensional array and it has items that have the same name in it, how do I get the values of each similar item? EG: specialservices => array( specialservice => array( serviceid => 1, servicename=> signature required

Re: [PHP] Arrays

2013-02-25 Thread Adam Richardson
On Mon, Feb 25, 2013 at 8:40 PM, Karl DeSaulniers wrote: > Hi Guys/Gals, > If I have an multidimensional array and it has items that have the same name > in it, how do I get the values of each similar item? > > EG: > > specialservices => array( > specialservice => array( >

[PHP] Arrays

2013-02-25 Thread Karl DeSaulniers
Hi Guys/Gals, If I have an multidimensional array and it has items that have the same name in it, how do I get the values of each similar item? EG: specialservices => array( specialservice => array( serviceid => 1, servicename=> signature required,

Re: [PHP] Big File Upload how to catch stream

2013-02-25 Thread tamouse mailing lists
On Sun, Feb 24, 2013 at 1:10 PM, Wim wrote: > > Hello, > > I have been looking how to upload big files more than 1GB , with php but it > doesn't work well. I guess php POST multipart method is to memory consuming. > Is there a way , like in the apache.commons to catch the stream and handle > it ?