You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
312 B

2 years ago
<?php
if(isset($_POST['searchterm']))
{
echo htmlspecialchars($_POST['searchterm'], ENT_QUOTES);
}
?>
<form action="" method="post">
User name: <input type="text" name="name"><br>
Password: <input type="password" name="password"><br>
<input type="submit" value="Search">
</form>