I'm using V1.2 of the snippet found at this page:
http://www.phpbuilder.com/snippet/detail.php?type=snippet&id=204
I've been trying to figure out how to tell the script NOT to display .htaccess, *.php files in the listing, however, have come up with nothing. Does anyone out there know how this can be accomplished?
Thanks!
Use, I believe, strrchr() to get the extension of the file (anything after last dot). If it's '.htaccess' or '.php', then don't display it.
Diego
Thanks! I'll try that.