I'm trying to display the contents of a form field on the screen using PHP. But I'm not having any luck. Below is the code I've got so far.
Help!
<html>
<head>
<title>Test</title>
</head>
<body>
<form>
<input type="text" name="u_name">
<input type="submit" value="Click here to test.">
</form>
<?php
echo $_POST["u_name"]
?>
</body>
</html>