mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2025-12-29 11:45:20 -05: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");
|
|
|
|
?>
|