I've just started to code PHP, I have made a form with a submit button on my HTML page:
<form action="thing.php" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name"><br>
E-mail:<br>
<input type="text" name="mail"><br>
Comment:<br>
<input type="text" name="comment" size="50"><br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
and made a PHP page aswell:
<html>
<head>
<title>Success</title>
</head>
<body>
<?php
echo "Hello World";
?>
</body>
</html>
when I click the submit button on the HTML page it shows nothing.
Please help!!