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.


Form with Text Email

HTML Form that formats user input into a text message. Formatting of message may be varied by editing on-click Overlay at bottom of page. Multiple emails may be sent by adding more MAIL../MAIL tags to bottom of page.

email.html


<html>
<title>Format Email and Send</title>
<form method=post action=processform>
First Name: <input type=text name=Myfirstname size=15><br>

Last Name: <input type=text name=Mylastname size=20><br>
Street Address: <input type=text name=Mystreetaddress size=40><br>
City: <input type=text name=Mycity size=20><br>

State, Zip: <input type=text name=Mystate size=2 maxsize=2><br>
<input type=text name=Myzipcode size=10><br>
Email: <input type=text name=Myemail size=40><br>

Phone: <input type=text name=Myphone size=40><br>
Comments:<br>
<textarea name=Mycomments rows=5 cols=40>
</textarea><br>

<input type=submit value="Send">
</form>
</html>

<<OVERLAY processform
Mytext =
'First: ' & Myfirstname & LF &
'Last: ' & Mylastname & LF &
'Street Address: ' & Mystreetaddress & LF &
'City: ' & Mycity & LF &
'State: ' & Mystate & LF &
'Zip Code: ' & Myzipcode & LF &
'Email: ' & Myemail & LF &
'Phone: ' & Myphone & LF &
'Comments:' & LF & Mycomments

MAIL Mytext TO
ADDRESS="yourname@yourserver.com"
SUBJECT="Place Subject Here"
/MAIL

GOTO "thank_you.html"
>>



NOTE: The & character is used to paste text together. The LF is a line feed character.

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