Re: [Proto-Scripty] Re: uploading a file to a server.

2012-05-16 Thread Marty Amberg
Thanks Jason Will give it a shot. A example would be great, On 5/13/2012 12:32 AM, Jason wrote: Totally do-able using the HTML 5 Javascript File API (won't work in IE though) you can use the file object in the postBody option and that will upload the file to your php script through the

Re: [Proto-Scripty] Re: uploading a file to a server.

2012-05-16 Thread Jason Westbrook
Here is a simple Sample of Ajax upload using the HTML5 File API frontend javascript = $(fileupload).observe(change,handleupload); function handleupload( e ) { var el = e.findElement(); new

[Proto-Scripty] Re: uploading a file to a server.

2012-05-12 Thread Jason
Totally do-able using the HTML 5 Javascript File API (won't work in IE though) you can use the file object in the postBody option and that will upload the file to your php script through the php://input stream - use $_GET parameters for the rest of the information you want to post to solve