How do you use AJAX POST to change the contents of a file on your web server?
I've been looking through various topics trying to find out how to word a POST request correctly but I'm still unsure. There's some great examples out there but I'm not sure how to translate the examples into something I can use for my project.
I want to write to a text file hosted on a web server.
My project is hosted on the same web server.
The data I want to overwrite the text file with is an array.
The text file has write permissions enabled.
I am able to "GET" the data from the text file and update my array.
I am unable to update / upload data to the text file
Sorry for not including a capx, probably not relevant seeing as none of this works in preview anyway. <-[solved]
My code looks this this:
Button_Download On clicked = AJAX request "http://www.mysite.com/data.txt" (tag "getdata")
AJAX on "getdata" completed = Array Load from JSON string AJAX.LastData
Button_Upload On clicked = AJAX Send Array.AsJSON to URL "http://www.mysite.com/data.txt" (method "POST", tag "savedata")
I think the Data field needs to be written in query string form. I don't know how to do that or what that means.
So for "data to post" it should be some php stuff around the Array.AsJSON ?
Am i ment to have a php file somewhere?
Just to be clear, I'm not trying to send pieces of data, I want the whole array being uploaded and downloaded.
EDIT
I'm continuing to research this while I wait for a reply.
I've found some great info that will help others trying to figure this stuff out.
What I've learned - May or may not be correct
- If your setting up a project that uses AJAX to work with your website, your probably going to need to learn a little about PHP and setup a PHP file in your web hosting directory (eg. where your website is hosted).
I don't think the AJAX Page in the manual makes this very clear.
- To get AJAX stuff to work in preview you need to use "header('Access-Control-Allow-Origin: *');" Which is great... but how do you use it that line of code? Does it go in the C2 project somewhere?
Once again, not abundantly clear to beginners like myself.
Turns out, you put a PHP file on your website, eg anyfilename.PHP and you put this code in that file: