-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocuments_student.php
More file actions
35 lines (27 loc) · 997 Bytes
/
documents_student.php
File metadata and controls
35 lines (27 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php include 'inc/header1.php' ?>
Έγγραφα μαθήματος
<?php include 'inc/header3.php' ?>
<div class="container">
<?php
$sql = 'SELECT * FROM documents';
$result = mysqli_query($conn, $sql);
$documents = mysqli_fetch_all($result, MYSQLI_ASSOC);
?>
<?php if (empty($documents)) : ?>
<p>Δεν υπάρχουν Έγγραφα</p>
<?php endif; ?>
<?php foreach ($documents as $item) : ?>
<div class="content">
<h2>Έγγραφο <?php echo $item['id'] . ': ' . $item['title']; ?></h2>
<div style="text-indent:25px">
<p>
<i><?php echo $item['description']; ?></i><br><br>
<a href=<?php echo str_replace(' ', '%20', $item['location']); ?>>Download</a>
</p>
</div>
<hr>
</div>
<?php endforeach; ?>
<a href="#top" style="text-align: center;">back to top</a>
</div>
<?php include 'inc/footer.php' ?>