What is SHTML?
What does it run on?
How does it commpare to other web technologlies?
Printable View
What is SHTML?
What does it run on?
How does it commpare to other web technologlies?
You refering to Server Side Includes?
In its simplest form, you can use it to write a snippet of html, put it in a file, then include that file in *.shtml pages, and when the server processes the include statement, it replaces it which the html chunk. Handy for using menus and stuff across pages.
It works on Apache and IIS, and can do advanced stuff like echo environment variables, show the file's last modied date, or execute other cgi scripts.
OIC!
It's different to html in that normal html "includes" include other file at the browser.
Yeah, exactly.
Its like an extremely watered down version of CGI.