Hi, Experts,
I happened to notice there is a new (it is new to me ^_^)
apache that can handel embedded perl. A typical piece of code could be like this:
To me, the above code looks very much like jsp/php. I love it. Could someone recommemd a book or a website so that I can learn more about it? I did a quick serch through google and found the following site:
However, I would like to know if there are other good website about this topic. Thank you very much for you help.
I happened to notice there is a new (it is new to me ^_^)
apache that can handel embedded perl. A typical piece of code could be like this:
Code:
<html>
<body>
Test emdedded perl script in html.
<%@ Language=PerlScript %>
<%
for (my $i = 0; $i < 10; $i++)
{
print "\$i = $i<br>\n";
}
%>
</body>
</html>
To me, the above code looks very much like jsp/php. I love it. Could someone recommemd a book or a website so that I can learn more about it? I did a quick serch through google and found the following site:
However, I would like to know if there are other good website about this topic. Thank you very much for you help.