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
|
<table>
<tr>
<th class="detail_Titre_GENERAL"> Date de modification </th>
<th class="detail_Titre_GENERAL"> Etat </th>
<th class="detail_Titre_GENERAL"> Avancement </th>
<th class="detail_Titre_GENERAL"> Campagne recette utilisateur </th>
<th class="detail_Titre_GENERAL"> Date début prévisionnelle </th>
<th class="detail_Titre_GENERAL"> Date fin prévisionnelle </th>
<th class="detail_Titre_GENERAL"> Date début réel </th>
<th class="detail_Titre_GENERAL"> Chef de projet </th>
</tr>
<?php do { ?>
<tr class="detail_GENERAL_petit">
<td ><?php echo $row_Titre_histo['pm_horodatage']; ?></td>
<td ><?php echo $row_Titre_histo['STATE']; ?></td>
<td ><?php echo $row_Titre_histo['pm_completion']; ?></td>
<td ><?php echo $row_Titre_histo['pm_campagne']; ?></td>
<td ><?php echo $row_Titre_histo['date_debut_prev'];?></td>
<td ><?php echo $row_Titre_histo['date_fin_prev']; ?></td>
<td ><?php echo $row_Titre_histo['date_debut_reel'];?></td>
<td ><?php echo $row_chefdeprojet['n_fn'];?></td>
</tr>
<?php
while ($row_chefdeprojet = mysql_fetch_assoc($chefdeprojet))
}while ($row_Titre_histo = mysql_fetch_assoc($Titre_histo)) ;
?>
</table> |