09-13-2008, 11:20 PM
|
#9 (permalink)
|
|
The Frequenter
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
|
An even better way, to make sure that it all comes through, is base64 encoding.
There are so much ways to do this. I mostly do this trough encoding the string that I want to send, and then decoding it on the other send.
?this=a2lua3ksIGp1c3QgdHJ5aW5nIHRvIHNlZSBpZiB5b3UgYXJlIG dvaW5nIHRvIGRlY29kZSB0aGlzLg==
Base64 Encoder and Decoder
What you can do, if you want to send entire arrays, first serialise() the array, and then encode it as base64. When you want to retrieve it, decode it and then unserialise() it.
__________________
"Life is a bitch, take that bitch on a ride"
|
|
|