-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a webpage with links useful to test various aspects of img.php
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |