EngineGP/system/engine/replenish.php

12 lines
348 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'));
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'));
?>