EngineGP/system/engine/replenish.php

12 lines
360 B
PHP
Raw Normal View History

2023-03-04 23:45:46 +00:00
<?php
if (!DEFINED('EGP'))
exit(header('Refresh: 0; URL=http://' . $_SERVER['SERVER_NAME'] . '/404'));
2023-03-04 23:45:46 +00:00
if (!isset($url['response']) and !in_array($url['response'], array('success', 'fail')))
exit();
2023-03-04 23:45:46 +00:00
if ($url['response'] == 'success')
sys::out(file_get_contents(ROOT . 'success.html'));
else
sys::out(file_get_contents(ROOT . 'fail.html'));
2023-03-04 23:45:46 +00:00
?>