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.
$text = "blabla azaz";
$masiv = explode(" ", $text);
$br = count($masiv);
for($i=0; $i< $br; $i++;) {
echo $masiv[$i]."<br>";
}