C..8 Cheetah vs. PSP, PHP, ASP, JSP, Embperl, etc.

Webware's PSP Component
- http://webware.sourceforge.net/Webware/PSP/Docs/
Tomcat JSP Information
- http://jakarta.apache.org/tomcat/index.html
ASP Information at ASP101
- http://www.asp101.com/
Embperl
- http://perl.apache.org/embperl/

Here's a basic Cheetah example:

<TABLE>
#for $client in $service.clients
<TR>
<TD>$client.surname, $client.firstname</TD>
<TD><A HREF="mailto:$client.email" >$client.email</A></TD>
</TR>
#end for
</TABLE>

Compare this with PSP:

<TABLE>
<% for client in service.clients(): %>
<TR>
<TD><%=client.surname()%>, <%=client.firstname()%></TD>
<TD><A HREF="mailto:<%=client.email()%>"><%=client.email()%></A></TD>
</TR>
<%end%>
</TABLE>