This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Simple PHP Terminal | |
| // I would recommend you add a form of auth if you deploy this | |
| // This publicly allows access to your sever without auth so | |
| // lock it down on your server | |
| if ($_SERVER['REQUEST_METHOD'] === 'POST') { | |
| header('Content-Type: text/plain'); |