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 include("random.php"); ?>
<?php echo "<img src=\"$image_folder/$image_name\" alt=\"$image_name\" />";?>
<?php include ("$image_folder/$text_name");?>
<?php
//Да зарежда произволна картинка и текст
$file_type = ".jpg";
$text_file_type = ".txt";
$image_folder = "images"; //папката с изображенията в нюке-то.
$handle = opendir("./$image_folder");
while ($file = readdir($handle))
$names[count($names)] = $file;
closedir($handle);
sort($names);
for ($i=0;$names[$i];$i++){
$ext=strtolower(substr($names[$i],-4));
if ($ext==".jpg"){
$names1[$tempvar]=$names[$i];$tempvar++;
}
}
$random = mt_rand(1, $tempvar);
$image_name = $random . $file_type;
$text_name = $random . $text_file_type;
?>