1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
<form method="post" action="#" target="" >
<tr>
<th id="label" width="auto">Action N°</th>
<th id="label" width="auto">Date</th>
<th id="label" width="auto">Nature</th>
<th id="label" width="auto">Cabinet</th>
<th id="label" width="auto">Date Dépôt Cab</th>
<th id="label" width="auto">Commentaire</th>
<th id="label" width="auto">Action faite par</th>
<th id="label" width="auto">Supprimer</th>
</tr>
<form method="post" action="#"/>
<?php
$id=array();
for ($i=0;$i<count($recap);$i++)
{
?>
<tr >
<td id=""><?php echo $recap[$i]['actions_id'];?></td>
<td id=""><?php echo $recap[$i]['actions_dateaction'];?></td>
<td id=""><?php echo $recap[$i]['actions_nature'];?></td>
<td id=""><?php if($recap[$i]['actions_cabinet']!='--choisissez--') { echo $recap[$i]['actions_cabinet'];}?></td>
<td id=""><?php if($donneesact[$i]['actions_cabinet']!='--choisissez--') { echo $recap[$i]['actions_datedepotcab'];}?></td>
<td id=""><?php echo $recap[$i]['actions_commentairesTPR'];?></td>
<td id=""><?php echo $recap[$i]['actions_agent'];?></td></form>
<td><input name="id[<?php echo $i;?>]" type="radio" value="<?php $id[$i]=$recap[$i]['actions_id'];?>"></input></td>
</tr>
<?php
}
?>
</table>
<input align="right" type="submit" value="Supprimer" name="Supp"></input>
</form>
<?php
if (isset($POST['Supp'])){include ('impayes.php');supaction($id);}
?>
<form method="post" action="<?php echo "impayes.php?action=accueil&type=$type";?>">
<input type="submit" class="boutonM" name="QUITTER" value="QUITTER"/>
</form> |
Partager