View file wapirate/top/all.php

File size: 218B
<?php


$dir    = '../';
echo "<hr/><br/>$dir<br/>";
$files1 = scandir($dir);
print_r($files1);



$dir    = '../../';
echo "<hr/><br/>$dir<br/>";
$files1 = scandir($dir);
print_r($files1);




?>