0

I want to send a file to the server in binary, not using the normal form post method because that method encoding is not binary. The reason is that I have a IPad application which sends a binary file to the server and I need to do the same in JQuery in a web browser.

Phil
  • 46,436
  • 33
  • 110
  • 175

1 Answers1

1

Do you mean you want to use base64 encoding? Try this: http://phpjs.org/functions/base64_encode:358

Alexander Holsgrove
  • 1,795
  • 3
  • 25
  • 54