mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
6 lines
259 B
PHP
6 lines
259 B
PHP
|
<?php
|
||
|
|
||
|
// Echo the image - timestamp appended to prevent caching
|
||
|
echo '<a href="index.php" onclick="refreshimg(); return false;" title="Click to refresh image"><img src="images/image.jpg?' . time() . '" width="132" height="46" alt="Captcha image" /></a>';
|
||
|
|
||
|
?>
|