PaulS:
A "web site" is what browser renders after executing a script on the server. You do NOT have a website running on a server.
I'll have to disagree on that one.
A website, also written as web site, is a collection of related web pages, including multimedia content, typically identified with a common domain name, and published on at least one web server.
dataType : "json", //We will be requesting data in JSON format
timeout : 10000, //this will cancel the request if it has not received a reply within 10 seconds.
success: function(data){
strText1,strText2,strText3,strText4 = "";
stSpoon1,stSpoon2,stSpoon3,stSpoon4="";
nocache = "&nocache=" + Math.random() * 1000000;
var request = new XMLHttpRequest();
PA3040:
dataType : "json", //We will be requesting data in JSON format
timeout : 10000, //this will cancel the request if it has not received a reply within 10 seconds.
success: function(data){
strText1,strText2,strText3,strText4 = "";
stSpoon1,stSpoon2,stSpoon3,stSpoon4="";
nocache = "&nocache=" + Math.random() * 1000000;
var request = new XMLHttpRequest();
Use the Reply button, NOT the Quick Reply field. When you do that, there is an Additional Options link at the bottom of the text entry window. Click that link, and you can add attachments to your post.
It might be easier to write separate php scripts to extract the 4 interesting bits of data, and then make 4 GET requests. It depends on whether you are more familiar with Arduino programming or PHP development.