Questions tagged [wml]

WML is a markup language intended for devices that implement the Wireless Application Protocol (WAP) specification.

Definition (Wikipedia):

Wireless Markup Language (WML), based on XML, is a markup language intended for devices that implement the Wireless Application Protocol (WAP) specification, such as mobile phones. It provides navigational support, data input, hyperlinks, text and image presentation, and forms, much like HTML (HyperText Markup Language). It preceded the use of other markup languages now used with WAP, such as HTML itself, and XHTML (which are gaining in popularity as processing power in mobile devices increases).

Program Structure:

An example of the basic structure of a WML program:

<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN"
          "http://www.wapforum.org/DTD/wml12.dtd">

<wml>
  <card id="one" title="First Card">
    <p>
      This is the first card in the deck
    </p>
  </card>
  <card id="two" title="Second Card">
    <p>
      Ths is the second card in the deck
    </p>
  </card>
</wml>

More reading:

67 questions
0
votes
1 answer

WAP: Any good simulators still available?

I'm busy playing around with WML and was just wondering if there are any simulators still available? I have looked around quite a bit and have encountered a lot of dead links.
James Long
  • 61
  • 5
0
votes
1 answer

WMLS file not detected when called

I have a wml and wmls file both in the same directory , I am using winwap to run my script. in my wml file I call a function in the wmls file in the following fashion Submit Form Data my wmls file named…
Rahul Kumar
  • 399
  • 3
  • 8
  • 24
0
votes
3 answers

Conditional XSLT transformation in PHP

I have a piece of XML data which I need to transform into WML. It's something like this:
Quassnoi
  • 413,100
  • 91
  • 616
  • 614
0
votes
2 answers

Embedding GSM cellids in Short Messages

I'm using the WML function "providelocalinfo" to put location information into Short Messages send via a WIB menu on a GSM handset. I'm using the WIG WML v.4 Spec from SmartTrust. The relevant section is "9.4 providelocalinfo Element" I use the code…
Joshua Berry
  • 2,230
  • 3
  • 21
  • 24
0
votes
1 answer

Multiple rows printing from database

After querying for data from a database I used the datareader to fill an array. as the following. connection.Open(); System.Data.SqlClient.SqlDataReader reader = command.ExecuteReader(); reader.Read(); _firstname = reader[0].ToString(); _Year =…
arin
  • 602
  • 1
  • 6
  • 17
-1
votes
1 answer

pass parameters into a url after executing a SQL Query

I recently asked a questtion on how o write a query and thankfully you guys answered me (Thank you) My Last Question Im working on a WML site so I need to pass the values from the query I found a way to do so (shown below in code) , but It didnt…
arin
  • 602
  • 1
  • 6
  • 17
-2
votes
3 answers

HTML alternatives to make website?

I am using HTML to make a websites. I know an alternative languages to markup a website: XHTML, WML. Is there any more markup languages? Can I make a website only with XML or SGML? Thank you for responses.
Bren Ginthom
  • 99
  • 1
  • 2
  • 8
1 2 3 4
5