You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
671 B
36 lines
671 B
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ahoj světe!</title>
|
|
</head>
|
|
<body>
|
|
|
|
<?php
|
|
// vypsat aktuální datum
|
|
// set the default timezone to use.
|
|
date_default_timezone_set('Europe/Prague');
|
|
// Prints something like: Monday 8th of August 2005 03:12:46 PM
|
|
echo date('Y-m-d H:i:s');
|
|
|
|
echo "<br>";
|
|
$random_index = random_int(0, 2);
|
|
|
|
$images = [
|
|
"earth1.webp",
|
|
"earth2.jfif",
|
|
"earth3.jpg",
|
|
];
|
|
|
|
// var_dump($images);
|
|
|
|
$random_image = $images[$random_index];
|
|
|
|
?>
|
|
|
|
<img src="<?php echo $random_image; ?>" alt="Earth image" width="300">
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|