Name: Anonymous 2009-10-07 12:15
That all programming languages are essentially the same,
They differ only in syntax and keywords.
They differ only in syntax and keywords.
<html>
<head>
<title>PHP Quality!</title>
</head>
<body>
<form action="" method="POST">
<p>
<input type="text" name="name" />
<input type="submit" onclick="hello();" />
</p>
<?php
if (isset($_REQUEST['name']))
{
echo "Hello, " . $_REQUEST['name']; /* OH FUCK, UNSANITIZED INPUT */
}
?>
</form>
</body>
</html>