code,used,universal,index,file,will,create,li
Quick Search for:  in language:    
code,used,universal,index,file,will,create,li
   Code/Articles » |  Newest/Best » |  Community » |  Jobs » |  Other » |  Goto » | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
PHP Stats

 Code: 70,666 lines
 Jobs: 14 postings

 
Sponsored by:

 

You are in:

 
Login



Latest Code Ticker for PHP.
rNews
By Van Baelen Sebastiaan on 8/18


Click here to see a screenshot of this code!phpNN Neural Networks
By Joachim Krebs on 8/17

(Screen Shot)

iif() function
By Martin C. Conniffe on 8/16


Dynamic List of Specified Files
By nothing34543534 on 8/15


Active Users (No MySQL) UPDATED! BETTER!
By Brandon Sachs on 8/15


PassGen v 1 stable
By Bogomil Shopov on 8/15


toString v 1.0 b
By Bogomil Shopov on 8/15


Calculating factorials
By Daniel Destro do Carmo on 8/14


AcidicChip's MP3 ID3v2 Tag Writer 1.0
By Chance O. One on 8/14


Click here to put this ticker on your site!


Add this ticker to your desktop!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!





Affiliate Sites



 
 
   

Unviseral Index File

Print
Email
 

Submitted on: 1/25/2002 5:46:21 PM
By: Charles Chadwick 
Level: Beginner
User Rating: By 4 Users
Compatibility:PHP 4.0

Users have accessed this article 2845 times.
 

(About the author)
 
     This code can be used as a universal index file. It will create links to any files within it's current directory. The only customization needed is in the $allowedFiles array. This array contains the extenstions you want to allow (duh). I created this for something I was doing for work, and thought I would share it with the world.

 
 
Terms of Agreement:   
By using this article, you agree to the following terms...   
1) You may use this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this article from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the article or article's description.
    
    <?php
    // These are the allowed file types. Cus
    //     tomize this as you wish.
    $allowFiles = array (".jpg", ".gif", ".php");
    $pathInfo = pathinfo($SCRIPT_FILENAME);
    $curDir = $pathInfo["dirname"];
    $curFile = $pathInfo["basename"];
    $dir = opendir($curDir);
    while ($file = readdir($dir))
    {
    for ($i=0; $i<=count($allowFiles); $i++)
    {
    if (is_file($curDir."/".$file))
    {
    $allowedExt = $allowFiles[$i];
    if (!preg_match('/$allowedExt/', $file))
    {
    echo "<a href=\"$file\">$file</a><br>\r";
    break;
    }
    }
    }
    }
    closedir($dir);
    ?>
    
    


Other 2 submission(s) by this author

 

 
Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
Reason:
 
Your Vote!

What do you think of this article(in the Beginner category)?
(The article with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments
1/25/2002 5:47:15 PM:Charles Chadwick
Sorry that the formatting is kind of messed up on the code.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
1/28/2002 5:26:22 PM:Matt
Nice and simple, just the way it ought to be :)
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
6/6/2002 3:14:17 AM:fallenxsoul
Just wanted to say this is great, it needed a little altering for what i needed it for.. but this will hopefully prevent snoops from getting into places i dont want them to on my site.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
6/15/2002 6:27:33 PM:TomG
I'm fairly new to PHP and needed a chunk of code that does exactly what this script does. I have looked around for many hours trying to solve this problem. This is last piece I was missing from a total solution. Deperately needed the array handling and the hyperlinking! Thanks a bunch.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
6/27/2002 10:23:08 AM:axl
To bad the code only works on Apache because of the $SCRIPT_FILENAME variable.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
7/2/2002 9:17:01 PM:Alexander D
hmmm... seems to be showing me all the files in the directory... not just the extensions i tell it to...
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name.

NOTICE: The author of this article has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular article, please click here.
 
Name:
Comment:

 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Feedback | Customize | PHP Home | Site Home | Other Sites | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright© 1997 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.  Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.