Is it somehow possible to save anything?
It would be nice if you could use SaveImage() or SaveXML() or similar to save/download user created content.
SaveSomething() = Download
Re: SaveSomething() = Download
Code: Select all
;only works same domain and is asynchronous
fileurl$="URL path to your file"
Procedure HttpGetEvent(Success, Result$, UserData)
If Success
Debug Result$
Else
Debug "HTTPRequest(): Error"
EndIf
EndProcedure
HTTPRequest(#PB_HTTP_Get, fileurl$, "", @HttpGetEvent())
Re: SaveSomething() = Download
In SpiderBasic, it's ExportSomething to send data to user trough a download:
http://www.spiderbasic.com/documentatio ... image.html
http://www.spiderbasic.com/documentatio ... rtxml.html
and so on..
http://www.spiderbasic.com/documentatio ... image.html
http://www.spiderbasic.com/documentatio ... rtxml.html
and so on..