EngineGP/system/engine/replenish.php

12 lines
381 B
PHP
Raw Normal View History

2023-03-04 23:45:46 +00:00
<?php
if(!DEFINED('EGP'))
2023-03-05 13:59:34 +00:00
exit(header('Refresh: 0; URL=http://'.$_SERVER['SERVER_NAME'].'/404'));
2023-03-04 23:45:46 +00:00
2023-03-05 13:59:34 +00:00
if(!isset($url['response']) AND !in_array($url['response'], array('success', 'fail')))
exit();
2023-03-04 23:45:46 +00:00
2023-03-05 13:59:34 +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
?>