Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1
- <?php
- if(empty($_GET['file']))
- die('You didn't enter the file parameter.');
- $file = $_GET['file'];
- if(!file_exists($file))
- die('The chosen file does not exist.');
- include($file);
- ?>
- 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement