Your IP : 216.73.217.87
<!DOCTYPE html>
<html>
<head>
<title>Списък с тестове</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
p {
text-transform: uppercase;
font-weight: bold;
}
a {
color: #000000;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<?php for ($i = 0; $i <= 9; $i++): ?>
<?php if ($quizesList[$i]): ?>
<p><?php echo $subjects[$i]; ?></p>
<ul class="square">
<?php foreach ($quizesList[$i] as $quiz): ?>
<li>
<a href="view_quiz.php?id=<?php echo $quiz['quiz_id']; ?>">
<?php echo $quiz['title']; ?>
</a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
<?php endfor; ?>
</body>
</html>