mirror of
https://codeberg.org/vlw/victorwesterlund.com.git
synced 2025-09-13 19:13:42 +02:00
Added placeholder 'pattern.php' script. SW: Added uniform version control. 'handleRequest()' is now 'fetchContent()' and automatically saves response to 'bucket' Cahce Storage (removed between SW versions) Added uniform same-origin check with 'const origin'. Fixed issue where "cache lookup -> fetch fallback" wouldn't actually load content from cache.
8 lines
No EOL
127 B
PHP
8 lines
No EOL
127 B
PHP
<?php
|
|
|
|
$gif = imagecreatefromgif("./pattern.gif");
|
|
|
|
header("Content-Type: image/gif");
|
|
|
|
imagegif($gif);
|
|
imagedestroy($gif); |