Our Government
BYLAWS & POLICIES
[insert_php]
$dirBylaws = “wp-content/uploads/Office/Bylaws”;
$dhBylaws = opendir($dirBylaws);
while (false !== ($filename = readdir($dhBylaws)))
{
if($filename!=’.’&&$filename!=’..’) {
$filesBylaws[] = $filename;
}
}
sort($filesBylaws);
for ($i = 0; $i < count($filesBylaws); ++$i) {
$value = $filesBylaws[$i];
$withoutExt = preg_replace("/\\.[^.\\s]{3,4}$/", "", $value);
$withoutExt = trim($withoutExt);
echo "{$withoutExt}
“;
}
[/insert_php]