foreach avec variable de session

foreach avec variable de session - PHP - Programmation

Marsh Posté le 20-09-2004 à 14:44:54    

voila je fais un systeme de telechargements de fichiers multiples... et je veux faire afficher les liens dans le mail du client...
j'ai créé des variables de session genre
 
$_SESSION['downloadlinks']['1']
$_SESSION['downloadlinks']['2']
$_SESSION['downloadlinks']['3']
$_SESSION['downloadlinks']['4']
$_SESSION['downloadlinks']['5']
 
j'ai fais ça :
 

Code :
  1. foreach($_SESSION['downloadlinks'] as $key)
  2. {
  3. if (!empty($_SESSION['downloadlinks']['\"$key\"']))
  4. {
  5. $messagemail.="<b>Votre fichier n° $key: </b><a href=\"".$_SESSION['downloadlinks']['\"$key\"']."\" target=\"_file\">$filename$key</a><br />";
  6. }
  7. }


 
... mais je suis pas sur que ça marche comme ça :??:

Reply

Marsh Posté le 20-09-2004 à 14:44:54   

Reply

Marsh Posté le 20-09-2004 à 16:48:41    

bon j'ai procedé differement.. j'ai fait :
 

Code :
  1. $i=1;
  2. while($i <=5)
  3. {
  4. if (!empty($downloadlinks[$i]))
  5. {
  6. $messagemail.="<b>Votre fichier n° $i : </b><a href=\"".$downloadlinks[$i]."\" target=\"_file\">fichier $i</a><br />";
  7. }
  8. $i++;
  9. }

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed