You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-webdb/www/policy/index.php

23 lines
269 B
PHP

<?php
loadem("index");
showheader(_("CAcert - Policies"));
?>
<h1>CAcert Policies</h1>
<ul>
<?php
foreach (glob("*.php") as $filename)
{
if($filename != "index.php")
{
echo "<li><a href='$filename'>$filename</a></li>\n";
}
}
?>
</ul>
</body>
</html>