Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Looking for more info about embedded perl in html

Status
Not open for further replies.

cyan01

Programmer
Mar 13, 2002
143
0
0
US
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:

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.
 
use the search function for posts here by phalanx1, our resident perlscript evangelist, now it looks like there's two ;-)

cigless ...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top