INCLUDE()


Function: INCLUDE

Explanation
Much like the FILE function but can be used to display files or URLs.  (Requires LIBWWW-PERL Module installed for urls). Also similar to PHP <? include() ?> function.

If you would like to display a file or a URL from your site (such as a cgi script) or another site within your html file you can use the include function.

Usage:
Include/Show A File or a url:

<!--include(url)-->
                or
<!--include(filename)-->

Example(s)
Include/Show A File or a url:

<!--include(http://www.tnldev.com)-->
                or show an index page
<!--include(index.html)-->

or display from value passed to page…
<!--include(<!--$value-->)-->

Back To Contents