Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html lang="en-US">
<title>Customers</title>
<link rel="stylesheet" href="style.css">
<script src="2.0.3/appml.js"></script>
<body>
<div appml-data="customers.js" appml-controller="myController">
<h1>Customers</h1>
<p>{{today}}</p>
<table>
<tr>
  <th>Customer</th>
  <th>City</th>
  <th>Country</th>
</tr>
<tr appml-repeat="records">
  <td>{{CustomerName}}</td>
  <td>{{City}}</td>
  <td>{{Country}}</td>
</tr>
</table>
<p>Copyright {{copyright}}</p>
</div>
<script>
function myController($appml) {
    if ($appml.message == "ready") {
        $appml.today = new Date();
        $appml.copyright = "W3Schools"
    }
}
</script>
</body>
<!-- Mirrored from www.mdssup.ma/appml/tryit.asp?filename=tryappml_messages_open by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 05 Sep 2022 14:57:15 GMT -->
</html>