In the list.txt file, I store the data like this:
я ты мы вы and choose the answer for the GET parameter
$list = file_get_contents('list.txt'); $exp = explode($_GET['r'], $list); print_r($exp); For example, if $_GET['r'] will have the value "I", then in $exp[1] should be "you" but in the place of it there is "you and you"
$listyou have all the text, and not one term is found. - Visman