At 0543 2/7/00 , you wrote:
>write %filename.html reduce [ <html> ...... </html> ]
Now I am getting "REBOL - Security Abort "
This is my file code:
*************************************************************************
s#!/www/Rebol/rebol --cgi
REBOL [
Title: "Easy CGI Form Example"
Date: 19-July-1999
File: %cgiform.r
]
set-net [[EMAIL PROTECTED] MAIL.thousand-hills.tzo.net ]
secure [
net allow
file allow
]
cgi: make object! decode-cgi system/options/cgi/query-string
write %form2.html reduce [
<html><body><CENTER><h2>"CGI Results:"</h2></CENTER><H3><BLOCKQUOTE>
"Name:" <B> cgi/name </B>
" SSN:" <B> cgi/ssn
</B><P>
"" <B> cgi/address </B><BR>
"" <B> cgi/city </B>
" " <B> cgi/st </B>
" " <B> cgi/zip </B><BR>
"" <B> cgi/phone </B>
" " <B> cgi/email </B><P>
<P>
</H3></BLOCKQUOTE>
</body></html>
]
web-page: read %form2.html
send [EMAIL PROTECTED] web-page
*************************************************************************************************
*