75
TIDE and Tibbo BASIC User Manual
©2000-2008 Tibbo Technology Inc.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<HTML>
<BODY>
BEGINNING OF OUTPUT<br>
<?
dim
i
as
integer
for
i =
1
to
10
?>
<i> Foo </i> <br>
<?
next
i
?>
<br>END OF OUTPUT<br>
</BODY>
</HTML>
In effect, this file would cause the following to appear in the browser window of the
user accessing this page:
BEGINNING OF OUTPUT
foo
foo
foo
foo
foo
foo
foo
foo
foo
foo
END OF OUTPUT
When to Use HTML Pages In Your Project
For an embedded device, built-in webserver can provide a convenient interface to
this device; in fact, it is one of the best ways to allow your users to access your
device remotely. They would just have to enter an address in a web browser, and
voila, up comes your interface.
HTML support, as implemented in the Tibbo Basic, allows you complete control
over page structure. You can use client-side technologies such as JavaScript, CSS
etc., while still being able to dynamically generate HTML content within Tibbo
device.
Further information about creating HTML files with dynamic content can be found
in the
as well as
object
documentation).
76
314
274