instiki/vendor/plugins/erubis-2.6.5/test/data/users-guide/example.ec

28 lines
397 B
Plaintext
Raw Normal View History

<%
#include <stdio.h>
int main(int argc, char *argv[])
{
int i;
%>
<html>
<body>
<p>Hello <%= "%s", argv[0] %>!</p>
<table>
<tbody>
<% for (i = 1; i < argc; i++) { %>
<tr bgcolor="<%= i % 2 == 0 ? "#FFCCCC" : "#CCCCFF" %>">
<td><%= "%d", i %></td>
<td><%= "%s", argv[i] %></td>
</tr>
<% } %>
</tbody>
</table>
</body>
</html>
<%
return 0;
}
%>