Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 2 → Rev 3

/website/index-tech.php
0,0 → 1,35
<?php
$arts = array(
'pkgincl'=>'Packages inclusion rules',
'pkgformat'=>'Package format'
);
 
natcasesort($arts);
 
if (isset($_GET['art'])) {
$art = $_GET['art'];
if (!array_key_exists($art, $arts)) {
echo "<p>invalid article!</p>";
return;
} else {
echo "<p class=\"title\">" . htmlentities($arts[$art]) . "</p>\n";
echo "<p class=\"copyr\">This is an article from the Svarog386 tech base</p>\n";
echo '<p class="tech">';
echo htmlentities(file_get_contents('tech/' . $art . '.txt'));
echo "</p>\n";
return;
}
}
?>
 
<p class="title">Svarog386 technical notes</p>
<p class="copyr">no documentation is perfect, this one's no exception</p>
<table style="margin: 0 auto;">
 
<?php
foreach ($arts as $file=>$title) {
echo "<tr><td><a href=\"?p=tech&art={$file}\">" . htmlentities($title) . "</a></td></tr>";
}
?>
 
</table>