Browse Source

first commit

master
Pomykacz 8 months ago
commit
3d3deab98f
  1. BIN
      earth1.webp
  2. BIN
      earth2.jfif
  3. BIN
      earth3.jpg
  4. 5
      hello.php
  5. 36
      index.php

BIN
earth1.webp

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

BIN
earth2.jfif

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
earth3.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

5
hello.php

@ -0,0 +1,5 @@
<?php
echo "<h1>Ahoj světe!</h1>";

36
index.php

@ -0,0 +1,36 @@
<!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>
Loading…
Cancel
Save