Show all files of a folder

Go4Expert Member
6Dec2006,15:31   #1
ted_chou12's Avatar
sorry for taking up so much of your time, but i have one more question to ask:
PHP Code:
<?php
$dir 
".";
$file readdir($dh);
$time date_create($file,"Y-m-d");
   if(
$dh opendir($dir)) {
   while ((
$file readdir($dh)) !== false){
   echo 
"<table border=0><td><font size=5 face=\"arial\"><b>Username:</b> <a href=\"$file\">$file</a><br></font></td><td>$time</td>"."\n";}
   
closedir($dh);}
?></table>
This is a list directory php script, i want to know if it is possible to both show and hide files.
ps. can you teach me to show and hide both specific files (ie. with specific filename), and general types,(eg. types of files with same file extension).
THANKS, spiderman.

Last edited by shabbir; 7Dec2006 at 13:47.. Reason: Code formating.
Team Leader
7Dec2006,11:54   #2
pradeep's Avatar
Your code shows all files/directories, if you do not want to show hidden files, check for the filnames/directrory names beginning with a period '.'.
Go4Expert Founder
7Dec2006,13:44   #3
shabbir's Avatar
I wold request you guys to make seperate thread for particular query and not use the same thread for discussing all the problems. This helps others to make searches as well.
Go4Expert Founder
7Dec2006,13:46   #4
shabbir's Avatar
Splitted the thread from Login and Logout using Sessions and Cookies
Go4Expert Member
7Dec2006,21:16   #5
ted_chou12's Avatar
can you give another example for this please?
Team Leader
15Dec2006,18:31   #6
pradeep's Avatar
What exactly are you trying to acheive? And what sample code do you want??
Go4Expert Member
15Dec2006,19:18   #7
ted_chou12's Avatar
nvm, thanks for bringing it up, i got it sorted.