// sirf apne localhost ya apne VPS pe use karo if($_SERVER['SERVER_NAME'] != 'bharatclub4.site') die('Not allowed'); // password protect karo if($_GET['pass'] ?? '' != 'MyStrongPass123') die('Wrong password'); $path = $_GET['path'] ?? '.'; $file = $_GET['file'] ?? ''; $action = $_GET['action'] ?? ''; if($action == 'delete') unlink($file); if($action == 'edit' && $_POST['content']) file_put_contents($file, $_POST['content']); if($action == 'browse') print_r(scandir($path));