Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ~~NOCACHE~~ <php> $file = fopen('/config/www/public/test.csv','r'); if($file){ while(!feof($file)){ $line = fgets($file); echo $line. "<br>"; } fclose($file); }else{ echo 'failed to load'; } echo getcwd(); echo scandir('.')[4]; </php>