This is in my javascript code. The variable dataStore is a valid JSON object and the JSON.stringify works fine - I tested with console.log() to be sure.
I'm new to jQuery and have not written a CGI application in awhile so I may be doing something incorrect here.
jQuery.post("taskmanager.php", JSON.stringify(dataStore), function (returnData) {
alert(returnData);
});
The taskmanager.php script resides in the same folder as my other files ( taskmanager.html, taskmanager.css, taskmanager.js ). This folder resides on my Windows7 folder E:\JamesLaderoute\MySoftware\WebApp\TaskManager\code
I'm not sure what to put into the taskmanager.php script. I thought I could do something simple like:
<?php
$data = $_GET["data"];
echo "done";
?>
What I don't understand is, how will the php script know that my JSON stringify information was called "data".
Also, I thought jQuery.post() takes the script name as the first argument, and then the data to be sent to the script followed by a callback function that gets called when the script returns data via echo calls.
The alert() does get called but it's displaying the php script rather than the string "done"
I've searched the internet (a little bit) and found examples that use something called AJAX to send data to a script like php.
I learn best with a small example, is there a good example that points out what I'm missing? How do I get this to work?
Eventually I plan on taking whatever the JSON data is and saving it to a file on the server. Do I need to run this all with a real server? Right now I'm not using one but I do have WAMP setup so I could use that if that is what is required.
Thank you to everyone who posted answers to my problem. I'm editing this post to show the actual code I ended up using to get my application working.
JavaScript code:
alert(returnData); });
$.ajax({
url : "taskmanager.php" ,
type : 'POST',
data : JSON.stringify(dataStore),
success : function(res) {
// Successfully sent data
console.log(res);
},
error: function(err) {
// Unable to send data
console.log(err);
}
});
PHP code:
<?php
$contents = file_get_contents('php://input');
$data = json_decode( $contents );
file_put_contents( "taskdata.json", "data=".$contents );
echo "<br>done</br>";
?>