Hallo!
 Wolfgang Klinger schrieb folgendes am 22.07.2004:
>  richtig:
> 
>             $texts = array('text1' => 'noch ein text');
>             echo ('irgendein text '.$texts['text1']);
 bzw. auch 
              echo ("irgendein text {$texts['text1']}");
 wobei obere Lösung bevorzugt wird...
 Wolfgang