Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?php
if(isset($_POST['submit'])){
$part=$_POST['word'];
$lenght=strlen($part);
$words=file('words.txt');
foreach($words as $word){
if(substr($word,-$lenght)==$part){
echo $word."\n<br>\n";
}}}else{
echo '<form action="index.php" method="post">
<input type="text" name="word">
<input type="submit" name="submit">
</form>';
}
?>
<?php
$words = array("цаца","каца","лаваца","самолет","цацамаса","пиаца","пица","кофа","казан","блабла");
if (isset($_POST['check'])) {
foreach($words AS $word) {
if (preg_match('/'.$_POST[check_word].'/i',substr($word,-2))) {
echo $word."<br />";
}
}
}
?>
<form action="" method="post">
<input type="text" name="check_word" value="" /> <input type="submit" name="check" value="Тест" />
</form>
<?php
$words = array("цаца","каца","лаваца","самолет","цацамаса","пиаца","пица","кофа","казан","блабла");
if (isset($_POST['check'])) {
foreach($words AS $word) {
if (preg_match('/'.$_POST[check_word].'$/i',$word)) {
echo $word."<br />";
}
}
}
?>
<form action="" method="post">
<input type="text" name="check_word" value="" /> <input type="submit" name="check" value="Тест" />
</form>
Е, какво ?alex95_bg_2 каза:@Replace ами ако напише цаца? :lol: