10 lines
No EOL
189 B
PHP
10 lines
No EOL
189 B
PHP
<?php
|
|
|
|
$adminer = dirname(__FILE__).'/adminer.php';
|
|
|
|
$new = @file_get_contents('https://www.adminer.org/latest.php');
|
|
|
|
if ($new)
|
|
file_put_contents($adminer, $new);
|
|
|
|
header('Location: ./'); |