<form action="validate.cgi" method="POST">

=====================================

The results of the survey can be found 
<a href="results.cgi">here</a>.

=====================================

<%@ Page Language="VB" %>
<%
HelloWorld.InnerText = "Hello World!"
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  "http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>
<title>Przykad ASP - Witaj wiecie</title>
</head>
<body>

<p id="HelloWorld" runat="server"></p>

</body>
</html>

=====================================

<?php
$HelloWorld = "Witaj wiecie!";

header('Content-type:  text/html');
print <<<HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  "http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>
<title>Przykad PHP - Witaj wiecie</title>
</head>
<body>

<p>$HelloWorld</p>

</body>
</html>
HTML;
?>

=====================================


