ksb/jul97 Three parts to cc form registration: 1. Form creation: Viewable online via browser/view/document source. 2. Form input processed with software uncgi. Was available at but hyperion name bought out so now resides at This straightforward frontend program processes queries and forms from the Web on UNIX systems and returns the indiviual parameters so input is returned as a comma seperated line. 3. Form thank you and return: ***************************** #!/bin/sh #(/home/karen/public_html/scripts/ccreg.cgi) out=/tmp/out.reg all=/tmp/all.reg echo "***ENTRY" > $out echo "$WWW_name,$WWW_site,$WWW_email,$WWW_phone,$WWW_transport,$WWW_trip,$WWW_D23,$WWW_D24,$WWW_D25,$WWW_aday,$WWW_atime,$WWW_aair,$WWW_aflight,$WWW_dday,$WWW_dtime,$WWW_dair,$WWW_dflight" >> $out cat $out >> $all mail karen@icess.ucsb.edu < $out mail charleen@icess.ucsb.edu < $out echo Content-type: text/html echo echo "" echo "Thank you for registering!" echo "
" echo "Thanks for registering!
" echo "Go Back" echo "" echo ""