Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

The AppML Client


In the following chapters, we will build a web application in the web browser.


AppML Client

The AppML client is a JavaScript that runs in any web browser.

It can easily be added to any HTML page with a single line of code:

<script src="https://www.w3schools.com/appml/2.0.3/appml.js"></script>

The AppML client lets you add external data to any HTML element, using HTML attributes:

<table appml-data="customers.js">

It has a built in function for displaying data anywhere in the HTML:

<td>{{CustomerName}}</td>

{{ ... }} Are placeholders for AppML data.

It also has built in functions for repeating HTML elements, using any array found in the data:

<tr appml-repeat="records">
..
.
</tr>

The AppML client will not interfere with the existing HTML or CSS.

It works well with any existing CSS. We have used W3.CSS in our examples.


AppML Web Applications

AppML is extremely efficient for building web applications.

One of the most powerful features is the ability to develop prototype applications in the web browser, including database CRUD applications, without the need of any web server.

CRUD: Create, Read, Update, Delete.


AppML Server

AppML comes with two server scripts (PHP and .NET) designed to provide server data.

With AppML server scripts, you can easily access SQL databases, like mySQL and SQL server.

The server scripts are very powerful, and can easily be installed on any PHP or .NET server. 


AppML Web SQL

In addition, for rapid application development and prototyping, AppML can also simulate a web server in the browser, using Web SQL.

Web SQL is a web page API for storing data in the browser using SQL. The API is supported by Google Chrome, Opera, Safari, and the Android Browser.

Just add the following script to your web page:

<script src="https://www.w3schools.com/appml/2.0.3/appml_sql.js"></script>

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.