Home    Cart    Free Download    Manual

Installation:
  Free Downloads
  The H2O Family
  Install Notes

Programming:
  Prerequisites
  H2O Whitepaper
  Online Manual
  Code Examples
  H2O Free Support


What's H2O?
H2O is programming made for the web.

What's it like?
H2O is English-like. If you know some Perl, VB, ASP, or PhP you'll be immediately productive in H2O. It runs on Linux, Mac, Unix, and Windows.

How do I try it?
Download H2O for free. Get it from hosting providers. Or buy on-line.

Where does H2O come from?
The language was invented by Aestiva. H2O stands for:
   HTML with
   HTML/OS
   Overlays.


List Files

file_list.html



<<

file_folder="/myworkarea/myfiles"
myEditor="/myworkarea/file_edit.html"
myFiles=FILELIST(file_folder)
myFiles=GETCOLNOTEQ(myFiles,4,"DIR")
>>

<html>
<title>List Files</title>
<table border=0 width=450 cellpadding=2 cellspacing=0 bgcolor=#EEEEEE>
<tr><td colspan=3 bgcolor=#CECECE>
Folder: <b><<file_folder>></b></td></tr>

<tr><td><b>File</b></td>
<td><b>Size (Bytes)</b></td>
<td><b>Last Modified</b></td>

</tr>
<< DISPLAY NAME=myFiles
^<tr><td><a href="'+myeditor+'" NAME=file_name
VALUE="'+File_Folder+'"/[1]">[1]</td><td>[2]
</td><td>[3]</td></tr>^
/DISPLAY

>>
</table>
</html>



NOTE: This file list is used to provide an automatic list of files in
a folder, each with a link to a file_edit.html. Note that FILELIST
returns files and directories. The GETCOLNOTEQ tag is used to delete
directories from the list returned. Note also how the file_edit.html
file is launced. The variable file_name is set to the file name
using a name=value pair in the link so the editor knows which file to load.

Home | Cart | Free Download | Online Manual
COPYRIGHT © 2005 Aestiva, LLC. ALL RIGHTS RESERVED.