EngineGP/system/engine/replenish.php
2023-03-05 16:59:34 +03:00

12 lines
381 B
PHP

<?php
if(!DEFINED('EGP'))
exit(header('Refresh: 0; URL=http://'.$_SERVER['SERVER_NAME'].'/404'));
if(!isset($url['response']) AND !in_array($url['response'], array('success', 'fail')))
exit();
if($url['response'] == 'success')
sys::out(file_get_contents(ROOT.'success.html'));
else
sys::out(file_get_contents(ROOT.'fail.html'));
?>