Einchecken des Online-Codes

This commit is contained in:
2017-05-07 14:37:49 +00:00
parent 9c1d71cea6
commit 85cc95c574
635 changed files with 76260 additions and 0 deletions

9
inhalte/unter/links.php Normal file
View File

@@ -0,0 +1,9 @@
<h1>Links</h1>
<?php
$sql = "SELECT * FROM Links ORDER BY linkId ASC;";
$result = $db->query ( $sql );
while ( $nt = $result->fetch_assoc() )
{
echo "<p>" . nl2br ( $nt['linkText'] ) . "<br /><a href=\"http://" . $nt['linkRef'] . "\" target=\"_blank\">" . $nt['linkRef'] . "</a></p>\n";
}
?>