mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-05-10 22:29:07 -04:00
10 lines
145 B
PHP
Executable File
10 lines
145 B
PHP
Executable File
<?php
|
|
$wd = getcwd();
|
|
$image = "$wd/vivaldi.jpg";
|
|
|
|
ignore_user_abort(true);
|
|
system("touch $image");
|
|
header("Location: index.html");
|
|
|
|
?>
|