I'm having issues on figuring this out. How do I exclude some files (eg: index.php) from the folder/ to be counted as. Any suggestions?
<?php
$dir = "folder/";
$count = 0;
$files = glob($dir . "*.{php}",GLOB_BRACE);
if($files){$count = count($files);}
echo'You have: '.$count.' files.';
?>