shell bypass 403
<div class="row">
<div class="col-md-12">
<div class="box">
<div class="box-header">
<h3 class="box-title">liste des pointages brut</h3>
<div class="box-tools">
<a href="<?php echo site_url('pointagebrut/add'); ?>" class="btn btn-success btn-sm">Ajouter</a>
</div>
</div>
<div class="box-body">
<table class="table table-striped">
<tr>
<th>Date</th>
<th>Temps</th>
<th>Utilisateur</th>
<th>Actions</th>
</tr>
<?php foreach($pointagebrut as $p){ ?>
<tr>
<td><?php echo $p['date']; ?></td>
<td><?php echo $p['temp']; ?></td>
<td><?php echo $p['users_id']; ?></td>
<td>
<a href="<?php echo site_url('pointagebrut/edit/'.$p['id']); ?>" class="btn btn-info btn-xs"><span class="fa fa-pencil"></span> Edition</a>
<a href="<?php echo site_url('pointagebrut/remove/'.$p['id']); ?>" class="btn btn-danger btn-xs"><span class="fa fa-trash"></span> Supprimer</a>
</td>
</tr>
<?php } ?>
</table>
</div>
</div>
</div>
</div>