Re: [PHP] Sending a lot of data to remote site

2006-05-12 Thread Ryan A
Hey Tedd, > >Would appreciate all comments. > > > >Thanks! > >Ryan > > > Ryan: > > How about zipping the array and sending that? > > This look interesting: > > http://www.weberdev.com/get_example-4066.html > > hth's I dont know if I can use that because I have no idea if the remote client m

Re: [PHP] Sending a lot of data to remote site

2006-05-12 Thread tedd
Would appreciate all comments. Thanks! Ryan Ryan: How about zipping the array and sending that? This look interesting: http://www.weberdev.com/get_example-4066.html hth's tedd -- http://sperling.com -- PHP

Re: [PHP] Sending a lot of data to remote site

2006-05-12 Thread Ryan A
Hey, > > ('hugo_the_boss','james007bond','max_power','etc') > > in "peak season" I expect the array to go upto 5k > > entries but very unlikely as I will be > transferring > > data every minute of only new entries. > > ok so the data is pretty simple and predictable - I > take it > that the max

Re: [PHP] Sending a lot of data to remote site

2006-05-12 Thread John Wells
On 5/12/06, Jochem Maas <[EMAIL PROTECTED]> wrote: Ryan A wrote: > Hi, > > I need to send an array of data to a remote site from > my script, the array will contain anything from 1 to > 5000 entries of less than 150 alpha numeric characters you could setup an XML feed that they can request at th

Re: [PHP] Sending a lot of data to remote site

2006-05-12 Thread Jochem Maas
Ryan A wrote: Hey, Thanks for replying. ... ('hugo_the_boss','james007bond','max_power','etc') in "peak season" I expect the array to go upto 5k entries but very unlikely as I will be transferring data every minute of only new entries. ok so the data is pretty simple and predictable - I ta

Re: [PHP] Sending a lot of data to remote site

2006-05-11 Thread Ryan A
Hey, Thanks for replying. > Ok dude, braindump coming up - just some random > thoughts and ideas, > no concrete answers: Thats ok, still in the planning stage, not a line of code written so am open to ideas instead of just concrete answers. > > 5000 * 100 = 50 bytes - i.e. on average abo

Re: [PHP] Sending a lot of data to remote site

2006-05-11 Thread Jochem Maas
Ryan A wrote: Hi, I need to send an array of data to a remote site from my script, the array will contain anything from 1 to 5000 entries of less than 150 alpha numeric characters Ok dude, braindump coming up - just some random thoughts and ideas, no concrete answers: 5000 * 100 = 50 byte

[PHP] Sending a lot of data to remote site

2006-05-11 Thread Ryan A
Hi, I need to send an array of data to a remote site from my script, the array will contain anything from 1 to 5000 entries of less than 150 alpha numeric characters each. Can you suggest the best method of doing this? Am looking at serialize() or a normal POST using some of the publicly availab