Good day! Tell me, how can I display words that appear in the two input fields? I just made words from the input fields, but I need to display only the same words.
<form action="" method="post"> <input type="textarea" name="one"/><br> <input type="textarea" name="two" /><br> <input type="submit" name="submit" value="Передать"><br> </form> <?php $a = $_POST['one']; $b = $_POST['two']; echo $a.'<br>'; echo $b; ?>