Beispiel #1
0
<?php 
//include_once '../dao/students.php';
$students = new Students();
?>
<div id="students_list">
    <ul>
        <?php 
//print_r($students->getAllNamesOfStudents());
foreach ($students->getAllNamesOfStudents() as $student) {
    ?>
        
            <li><a id="<?php 
    echo $student['id'];
    ?>
" href="#"><?php 
    echo $student['name'];
    ?>
</a></li>

        <?php 
}
?>
    </ul>
</div>