> #!/www/cgi/rebol -c
> REBOL [Title: "Server Time"]
> print "content-type: text/html^/"
> print [<HTML><BODY>]
> print ["Date/time is:" now]
> print [</BODY></HTML>]
Hmm.. try -cs in the first line
and perhaps you need string quotes around those html tags? Use either "" or
{}
#!/www/cgi/rebol -cs
REBOL [Title: "Server Time"]
print "content-type: text/html^/"
print ["<HTML><BODY>"]
print ["Date/time is:" now]
print [{</BODY></HTML>}]
hth
- Jason
--
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.