m.artin: pfad mit variable

Hallöchen,

ich hab noch keine Lösung für mein Problem:

ich möchte etwas mit include() einfügen. Der letzte Teil der Datei soll die Ausgabe der Variable $lng sein:

<?php include '../aaa/bbb/ccc- $lng .html'; ?>

d.h. wenn z.B. $lng=dd sollte der Pfad '../aaa/bbb/ccc-dd.html' lauten.

Vielen Dank
Martin

  1. <?php include '../aaa/bbb/ccc- $lng .html'; ?>

    singlequotes werden nicht "geparsed", also erkennt PHP die Variable nicht.

    Schreibe

    <?php include '../aaa/bbb/ccc-'.$lng'.html'; ?>

    Gruß, Samoht

    --
    fl:| br:> va:) ls:< n4:( ss:) de:] js:| mo:}
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music."
    (Kristian Wilson, Nintendo, 1989)
    1. Boah, ich schreib heut nix mehr... Hab n Punkt vergessen

      <?php include '../aaa/bbb/ccc-'.$lng.'.html'; ?>

      Gruß, Samoht

      --
      fl:| br:> va:) ls:< n4:( ss:) de:] js:| mo:}
      "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music."
      (Kristian Wilson, Nintendo, 1989)
      1. klappt - vielen Dank!