filter working
This commit is contained in:
parent
74a5b5375b
commit
3e9da1451e
@ -54,7 +54,8 @@ if(isset($_GET['filter'])){
|
|||||||
<table>
|
<table>
|
||||||
<tr><th>Sélectionner</th><th>Nom</th><th>Vélos</th><th>Places Libres</th></tr>
|
<tr><th>Sélectionner</th><th>Nom</th><th>Vélos</th><th>Places Libres</th></tr>
|
||||||
<?php
|
<?php
|
||||||
foreach ($data as $key => $station){
|
foreach ($data as $key => $station){
|
||||||
|
if ( ! $filter || isset($_GET[$key])){
|
||||||
echo
|
echo
|
||||||
'<tr>
|
'<tr>
|
||||||
<td><input type="checkbox" name="',$key,'"/></td>
|
<td><input type="checkbox" name="',$key,'"/></td>
|
||||||
@ -65,6 +66,7 @@ if(isset($_GET['filter'])){
|
|||||||
<td>', $station['ABS'], '</td>
|
<td>', $station['ABS'], '</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
</table>
|
</table>
|
||||||
<?php if ($filter) { ?>
|
<?php if ($filter) { ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user