fork download
  1. <form action="" method="get">
  2. <p><b>Введите название страны:</b><br>
  3. <input type="text" name="country"></p>
  4. <p><input type="submit" value="Отправить">,
  5. <!--p><b>Введите название города:</b><br>
  6. <input type="text" name="city"></p>
  7. <p><input type="submit" value="Отправить"-->
  8. </form>
  9.  
  10. <?php
  11.  
  12. $regexp= '/[A-zа-яёА-ЯЁ]{2,}/u';
  13. $country = $_GET[country];
  14. echo $country;
  15.  
  16. preg_match_all($regexp,$country,$matches, PREG_SET_ORDER, 0);
  17. echo "matches=";
  18. print_r($matches);
  19. echo "</br>";
  20.  
  21. $word = $matches[0];
Success #stdin #stdout #stderr 0.02s 23832KB
stdin
Standard input is empty
stdout
<form action="" method="get">
    <p><b>Введите название страны:</b><br>
     <input type="text" name="country"></p>
     <p><input type="submit" value="Отправить">,
	<!--p><b>Введите название города:</b><br>
     <input type="text" name="city"></p>
     <p><input type="submit" value="Отправить"-->
</form>

matches=Array
(
)
</br>
stderr
PHP Notice:  Use of undefined constant country - assumed 'country' in /home/Im4UAv/prog.php on line 13
PHP Notice:  Undefined index: country in /home/Im4UAv/prog.php on line 13
PHP Notice:  Undefined offset: 0 in /home/Im4UAv/prog.php on line 21