Guardian-Mage Posted July 18, 2007 Share Posted July 18, 2007 1) Is the only way that doesn't involve Databases to upload files is to CHMOD a directory to 777? 2) What are the risks of CHMODDING a directory to 777? 3) What are the risks of CHMODDING a .txt file to 777? 4) How can I find the name of every .txt file in a directory? Thanks for your help Link to comment https://forums.phpfreaks.com/topic/60568-directories-chmod-and-file-uploads/ Share on other sites More sharing options...
The Little Guy Posted July 18, 2007 Share Posted July 18, 2007 4.) <?php foreach(glob('/my/directory/*.txt') as $file){ echo $file; } ?> Link to comment https://forums.phpfreaks.com/topic/60568-directories-chmod-and-file-uploads/#findComment-301320 Share on other sites More sharing options...
Guardian-Mage Posted July 18, 2007 Author Share Posted July 18, 2007 That works fine, but how can I order it so it will list them in descending order. Each file has a name such as 07-05-23, or yy,mm,dd. I want the newest ones first. Link to comment https://forums.phpfreaks.com/topic/60568-directories-chmod-and-file-uploads/#findComment-301372 Share on other sites More sharing options...
The Little Guy Posted July 18, 2007 Share Posted July 18, 2007 <?php foreach(array_reverse(glob('/my/directory/*.txt')) as $file){ echo $file; } ?> Link to comment https://forums.phpfreaks.com/topic/60568-directories-chmod-and-file-uploads/#findComment-301380 Share on other sites More sharing options...
Guardian-Mage Posted July 18, 2007 Author Share Posted July 18, 2007 thank you, is there anyway to only select one file, the newest one? Link to comment https://forums.phpfreaks.com/topic/60568-directories-chmod-and-file-uploads/#findComment-301382 Share on other sites More sharing options...
The Little Guy Posted July 18, 2007 Share Posted July 18, 2007 <?php foreach(array_reverse(glob('/my/directory/*.txt')) as $file){ echo $file; break; } ?> Link to comment https://forums.phpfreaks.com/topic/60568-directories-chmod-and-file-uploads/#findComment-301386 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.