tropenberta: array in mail packen

Beitrag lesen

moin leuts

also hab mir folgendes überlegt:

  
$p = "1";  
while ( $p < 1000 ){  
  if ( $fid == "" ){  
  break;  
  } else {  
    $bestellung = "$p. ID:$fid[$p] Produkt:$produktname Preis:$produktpreis<br>";  
    $p++;  
  }  
}  
  
echo "$bestellung";  

schaut auch schonmal gut aus, aber hab jetzt diese ausgabe:

1. ID: 4. Produkt: xyz Preis: 2.50
2. ID: 7. Produkt: abc Preis: 2.90
3. ID: 8. Produkt: lop Preis: 3.50
999. ID: Produkt:Array Preis:Array

verstehe jetzt nicht ganz warum die 999. ausgegeben wird.

lg
micha