Je travaille sur une application web, et j'ai besoin d'un coup de main.
En fait , j'ai un tableau dont le code est le suivant :
<table class="table">
<thead>
<tr>
<th>Reference</th>
<th>Created for</th>
<th>Created Date</th>
<th>Issue Summary</th>
<th>SLA</th>
<th>Owner</th>
<th>Last Modified</th>
<th>Last Action</th>
</tr>
</thead>
<tbody>
<?php foreach( $incident_closed as $i => $ligne) {
echo '<tr class="success">';
foreach($ligne as $key => $value) {
echo '<td>' . $value . '</td>';}
'</tr>';
}?>
</tbody>
</table>
il est comme ceci le tableau:Reference Created for Created Date Issue Summary SLA Owner Last Modified Last Action
PBE-108 LGQ 31/10/2008 Laptop bloqué PBE 31/10/2008 Available Actions/Quick Close
PBE-208 PBE 31/08/2010 Service Account PBE 31/08/2010 Available Actions/Close Request
PBE-46 SXU 31/07/2008 PB de LICENSING V6 PBE 31/07/2008 Available Actions/Quick Close
PBE-47 PBE 31/07/2008 Test PBE 31/07/2008 Available Actions/Quick Close
PBE-302 VBT 31/05/2011 Changement PBE 31/05/2011 Available Actions/Close
Ce que je veux rajouter, est un click sur le premier champ Reference pour chaque ligne pour acceder un autre lien , je sais que je dois rajouter une balise <a href="" /a> mais quand je la rajoute ça me le fais pour tous les champs du tableau.
Je vous remercie par avance pr votre réponse.
Karima
