Simple Example:

<html>
<head><title>Embed Demo</title></head>
<body bgcolor=ffffff>
<bold>Counting from 0 to 4!</bold><br>
<%
  # perl code
  foreach $i (0..4) {
    # starts a small loop
%>
<br>
<%=$i%> #loop variable is printed for each number from
0 to 4
<%
  } # end of loop
%>
<br>
<pre>
Finished!
</pre>
</html>

 

--- David O'Dell <[EMAIL PROTECTED]> wrote: > Is
there a way to place a perl statement in a plain
> html file?
> I've been given the task of placing two pieces of
> dymanic data in an 
> already existing page written in html.
> 
> 
> -- 
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
>  

______________________________________________________________________ 
Post your free ad now! http://personals.yahoo.ca

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to