2007年12月3日 星期一

haserl:Html And Shell Embedded Report Language

haserl:Html And Shell Embedded Report Language,一個小型的 CGI wrapper,可以直接在 HTML 文件中嵌入 shell script 語法,使用用 POST 或 GET 傳入的變數會自動轉換成環境變數,在標記內( <? ?> )的語法則視為 shell script 來執行。

haserl 網址:http://haserl.sourceforge.net/



範例程式
#!/usr/bin/haserl
<?
temp='Html And Shell Embedded Report Language '

echo $temp

echo $FORM_foo

?>
<html>
<body>
<form action=1.cgi method=post>
<input type=text name=foo></input>
<input type=submit>
</form>
</body>
</html>

沒有留言: