Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
echo '<a href="' . $data['Link'] . '">' . $data['Omschrijving'] . "</a><br>\n";
<html>
<head>
<title>DC leerplatform</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="Site.css" rel="stylesheet" type="text/css">
</head>
<body>
<table class="Header" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td> <h1 align="center"><img src="Afbeeldingen/AanmeldTitel.gif" width="402" height="83"></h1>
</td>
</tr>
</table>
<br>
<table width="100%" border="0" cellspacing="2" cellpadding="0">
<tr>
<th><table class="navi" width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="15%" bgcolor="#D7D7D7">
Cursus<br>
<hr>
<a href="Index.php?Link=Word.php">Word</a><br><a href="Index.php?Link=Excel.php">Excel</a><br><a href="Index.php?Link=Access.php">Access</a>
<html>
<head>
<title>DC leerplatform</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="Site.css" rel="stylesheet" type="text/css">
</head>
<body>
<table class="Header" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td> <h1 align="center"><img src="Afbeeldingen/AanmeldTitel.gif" width="402" height="83"></h1>
</td>
</tr>
</table>
<br>
<table width="100%" border="0" cellspacing="2" cellpadding="0">
<tr>
<th><table class="navi" width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="15%" bgcolor="#D7D7D7">
Cursus<br>
<hr>
<?php
$db = mysql_connect("localhost", "xxxx", "") or die ("Verbinding mislukt");
mysql_select_db ("xxxxxxx",$db);
$SQL_statement = "SELECT * FROM `tblInhoudCursus`";
$resultset = mysql_query($SQL_statement);
$count_rows = mysql_num_rows($resultset);
while($data= mysql_fetch_array($resultset)){
echo '<a href="' . $data['Link'] . '">' . $data['Omschrijving'] . "</a><br>\n";
}
mysql_close();
?>
a:link {
color: #000000;
text-decoration: none;
}