Edit This Code:
<!DOCTYPE html>
<html lang="en-US">
<title>Customers</title>
<link rel="stylesheet" href="style.css">
<script src="2.0.2/appml.js"></script>
<body>

<p id="demo"></p>

<script>
var myObj, myArr, len, i, txt = "";

// Create an AppML object and fetch the data
myObj = new AppML();
myObj.dataSource = "http://www.w3schools.com/appml/customers.php";
myObj.getData();

// Locate the data records
myArr = myObj.data.records;
len = myArr.length;

// Display the records
for (i = 0; i < len; i++) {
    txt += myArr[i].CustomerName + "<br>";
}
document.getElementById("demo").innerHTML = txt;
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy