themoose
November 8th, 2005, 13:33
ok, heres the code
<?php
foreach(glob("*.php") as $file)
{
print "$file";
}
?>
how do i make it ignore certain files (something like
if (file=index.php) {
print " ";
})
how would i put that into coding? (or have I just amazingly got that right? :P)
thanks
themoose
<?php
foreach(glob("*.php") as $file)
{
print "$file";
}
?>
how do i make it ignore certain files (something like
if (file=index.php) {
print " ";
})
how would i put that into coding? (or have I just amazingly got that right? :P)
thanks
themoose