News:

This week IPhone 15 Pro winner is karn
You can be too a winner! Become the top poster of the week and win valuable prizes.  More details are You are not allowed to view links. Register or Login 

Main Menu

Wap Tutorial

Started by ben2ong2, October 05, 2006, 06:14:26 PM

Previous topic - Next topic

0 Members and 3 Guests are viewing this topic.

ben2ong2

WAP Homepages
WAP homepages are not very different from HTML homepages. The markup language used for WAP is WML (Wireless Markup Language). WML uses tags - just like HTML - but the syntax is stricter and conforms to the XML 1.0 standard.
WML pages have the extension *.WML, just like HTML pages have the extension *.HTML.

You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login

ben2ong2

WML Decks and Cards
WML pages are called DECKS. They are constructed as a set of CARDS, related to each other with links. When a WML page is accessed from a mobile phone, all the cards in the page are downloaded from the WAP server. Navigation between the cards is done by the phone computer - inside the phone - without any extra access trips to the server.
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login

ben2ong2

Example WML document:

<?xml version="1.0"?><!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN""You are not allowed to view links. Register or Login"><wml><card id="HTML" title="HTML Tutorial"><p>Our HTML Tutorial is an award winning tutorial from W3Schools.</p></card><card id="XML" title="XML Tutorial"><p>Our XML Tutorial is an award winning tutorial from W3Schools.</p></card></wml>
As you can see from the example, the WML document is an XML document. The DOCTYPE is defined to be wml, and the DTD is accessed at You are not allowed to view links. Register or Login
The document content is inside the <wml>...</wml> tags. Each card in the document is inside <card>...</card> tags, and actual paragraphs are inside <p>...</p> tags.

Each card element has an id and a title.
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login

fishlink