I understand the principles of WML. I was just wondering whether it is
possible to easily convert this HTML page into a page that can be used
for WAP. I have tried to make a few modifications to change it into a
WML page, but I kept getting errors about the PHP.
Any help would be greatly appreciated.
"Janwillem Borleffs" <jw@jwscripts.com> wrote in message news:<413b121e$0$58989$b83b6cc0@news.euronet.nl>.. .
> Dom wrote:
> > I am trying to convert this file so that I can use it with a WAP
> > Emulator to WML. Can anyone help me to convert it. I have tried what I
> > thought was correct but keep getting error messages.
> >
>
> WML is NOT HTML. Per example, the following:
>
> <html>
> <body>
> <br>
> </body>
> </html>
>
> will be the following in WML:
>
> <wml>
> <card id="myCard" title="Some title">
> <br />
> </card>
> </wml>
>
> Read up on the WAP protocol before you continue. A good place to start is:
>
> http://www.openmobilealliance.org/te.../wapindex.html
>
>
> JW