Beispiel #1
0
<table id="myTable" class="tablesorter table table-bordered table-hover">
	<thead>
		<tr>
			<th></th>
			<th>Nom</th>
			<th>Prenom</th>
			<th>Email</th>
			<th>Statut</th>
		</tr>
	</thead>
	<tbody>
		<?php 
$president = new President($dbConfig);
$ListeMembres = $president->ListerMembres();
foreach ($ListeMembres as $membre) {
    ?>
		<tr>
			<td class="avatar"><a href="../?page=membre&id=<?php 
    echo $membre->getId();
    ?>
"><span class="glyphicon glyphicon-user"></span></a></td>
			<td><?php 
    echo $membre->getNom();
    ?>
</td>
			<td><?php 
    echo $membre->getPrenom();
    ?>
</td>
			<td><a href="mailto:<?php 
    echo $membre->getEmail();