. Read it here https://github.com/Novetus/Novetus_src/blob/master/LICENSE-MASTER-SERVER or in LICENSE-MASTER-SERVER.txt. */ //id $id = $_GET["id"]; if (!empty($id)) { $file = 'serverlist.txt'; foreach(file($file) as $line) { if (strpos($line, $id) !== false) { $file_contents = file_get_contents($file); $contents = str_replace($line, '', $file_contents); file_put_contents($file, $contents); } } } ?>