Bonjour,

J'ai un soucis avec un tableau dans lequel se trouve un lien que je clic afin d'ouvrir une PopUP.
Le problème est que la variable ".$ligne['Clef']." ne passe dans l'URL.

Voir le code ci-dessous

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
// **Execution de la requete** //
					$resultat=mysql_query($sql);
  $i = 0;
 while($ligne=mysql_fetch_assoc($resultat)){
  // ++$i <=> $i = $i + 1; 
  $color = ++$i % 2 ? 'fond3':'fond2';
?>
 <tr>
  <td class="<?php echo $color; ?>"><?php echo $ligne['DateHeure']; ?></td>
  <td class="<?php echo $color; ?>"><?php echo $ligne['Customer']; ?></td>
  <td class="<?php echo $color; ?>"><?php echo $ligne['Transporteur']; ?></td>
  <td class="<?php echo $color; ?>"><?php echo $ligne['Clef']; ?></td>
  <td class="<?php echo $color; ?>"><?php echo $ligne['Date_Livraison']; ?></td>
  <td class="<?php echo $color; ?>"><?php echo $ligne['Type_Saisie']; ?></td>
  <td class="<?php echo $color; ?>"><?php echo $ligne['Nb_AWB']; ?></td>
  <td class="<?php echo $color; ?>"><?php echo $ligne['Date_Retour']; ?></td>
  <td class="<?php echo $color; ?>"><?php echo $ligne['Temps_Traitement']; ?></td>
  <td class="<?php echo $color; ?>"><?php echo $ligne['Login']; ?></td>
  <td class="<?php echo $color; ?>">
			<a href='RePrint_BL_Livraison.php?Clef=\".$ligne['Clef'].\"' target=\"_blank\" onclick=\"window.open('RePrint_BL_Livraison.php?Clef=\".$ligne['Clef'].\"','mapopup','location=no,toolbar=no,directories=no,menubar=no,status=no,scrollbars=no,width=100,height=100');return false;\">
			<img src='../image/consulter_by_bniz.png' border=\"0\"></a></td>
 </tr>
<?php
  }
?>
L'URL affiche ceci :

http://localhost/RePrint_BL_Livraison.php?Clef=\".$ligne[


Je pense qu'il doit sagir d'un problème synthaxe, mais je j'ai essayé plusieur solution et toujours le meme problème.

Merci pour votre aide.