-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.php
35 lines (28 loc) · 923 Bytes
/
questions.php
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
require_once 'header.php';
?>
<div id="content">
<input type="hidden" id="nav_trigger_input" value="students"/>
<table id="users">
<thead>
<tr>
<th style="width:20%"> Имена на потребителя:</th>
<th> Въпрос/Препоръка:</th>
</tr>
</thead>
<tbody id="tb">
<?php
$questions = fRecordSet::buildFromSQL('Question', 'SELECT questions.* FROM questions');
foreach ($questions as $question) {?>
<tr>
<td style="width:20%"><?php echo $question->getFirstName() . ' ' . $question->getLastName(); ?></td>
<td><?php echo $question->getText(); ?></td>
</tr>
<?php }
?>
</tbody>
</table>
</div>
<?php
require_once 'footer.php';
?>