15 lines
250 B
PHP
Raw Permalink Normal View History

2022-11-10 20:21:17 +01:00
<!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";
?>
2022-11-12 11:50:32 +01:00
<img src="<?= $imgs[mt_rand(0, count($imgs) - 1)] ?>" />
2022-11-10 20:21:17 +01:00
</body>
</html>