Skip to content

Commit

Permalink
Add a webpage with links useful to test various aspects of img.php
Browse files Browse the repository at this point in the history
  • Loading branch information
mosbth committed Nov 17, 2022
1 parent 9d7343a commit d5ca10c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions webroot/tests.php
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit d5ca10c

Please sign in to comment.