Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
body,td,th {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #0066FF;
font-weight: bold;
}
a:link {
color: #0066FF;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #0066FF;
}
a:hover {
text-decoration: underline;
color: #003366;
}
a:active {
text-decoration: none;
color: #0066FF;
}
.style1 {
font-size: 12px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
color: #FFFFFF;
}
.style3 {font-size: 12px; font-family: Arial, Helvetica, sans-serif; }
.style4 {font-size: 12px}
.style5 {font-size: 9px}
<?php
include("config.php");
$select = "SELECT * FROM nieuws ORDER BY id DESC LIMIT 0,10";
$query = mysql_query($select);
while ($list = mysql_fetch_object($query))
echo "<a href=artikel.php?id=$list->id>$list->Titel<br>";
?>
<html>
<head>
<link rel="StyleSheet" type="text/css" href="style.css"></link>
<title>Mijn pagina</title>
</head>
<body>
<?php
include("config.php");
$select = "SELECT * FROM nieuws ORDER BY id DESC LIMIT 0,10";
$query = mysql_query($select);
while ($list = mysql_fetch_object($query))
echo "<a href=artikel.php?id=$list->id>$list->Titel<br>";
?>
</body>
</html>
<?php
echo "<link rel=\"StyleSheet\" type=\"text/css\" href=\"style.css\"></link>";
include("config.php");
$select = "SELECT * FROM nieuws ORDER BY id DESC LIMIT 0,10";
$query = mysql_query($select);
while ($list = mysql_fetch_object($query))
echo "<a href=artikel.php?id=$list->id>$list->Titel<br>";
?>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>Mijn pagina</title>
</head>
<body>
<?php
include("config.php");
$query = "SELECT * FROM nieuws ORDER BY id DESC LIMIT 0,10";
$result = mysql_query($select);
while($rij = mysql_fetch_object($result))
{
echo "<a href=artikel.php?id=" . $rij->id . ">" . $rij->titel . "</a><br>\n";
}
?>
</body>
</html>
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.