Tutorial

Assuming that you already know some Perl, it's easy to start using PLP:
Once you have installed PLP, create an HTML page, and put Perl code in it somewhere. Put the Perl code in like this: <: perl code here :>.
That's all!
End of tutorial.

<body>
  <font color=red>
    <:
      print "Hello World!<br>";
      print join ':', 1..10;
      etcetera();
    :>
  </font>
</body>