mirror of
https://github.com/mosbth/cimage.git
synced 2025-07-23 17:51:34 +02:00
Add a webpage with links useful to test various aspects of img.php
This commit is contained in:
22
webroot/tests.php
Normal file
22
webroot/tests.php
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
$links = [
|
||||||
|
"img.php?src=car.png&v",
|
||||||
|
"img.php?src=car.png&w=700&v",
|
||||||
|
];
|
||||||
|
|
||||||
|
?><!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Links to use for testing</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Links useful for testing</h1>
|
||||||
|
<p>A collection of linkt to use to test various aspects of the cimage process.</p>
|
||||||
|
<ul>
|
||||||
|
<?php foreach ($links as $link) : ?>
|
||||||
|
<li><a href="<?= $link ?>"><?= $link ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
</body>
|
||||||
|
</html>
|
Reference in New Issue
Block a user