Rename directory.

This commit is contained in:
2022-11-12 11:25:58 +01:00
parent 70a7b56476
commit 629c828a6b
7 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Imagen Aleatoria</title>
</head>
<body>
<?php
$imgs[0] = "imgs/img0.jpg";
$imgs[1] = "imgs/img1.jpg";
?>
<img src="<?= $imgs[rand(0, 1)] ?>" />
</body>
</html>