Include (Hilfe!!!)

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Include (Hilfe!!!)

    Also ich möchte eine $disclaimer auf die Seite include_standard mit übernehmen und dort anzeigen lassen. Leider funtzt des net! Könnt Ihr euch das mal anschauen, vielleicht liegt es auch daran das $disclaimer eine PHP Datei ist!!!
    Das ist das Menü:
    <?
    $disclaimer=disclaimer.php
    ?>
    <html>
    <head>
    <link rel="stylesheet" type="text/css" href="../../css/schrift_fett.css">
    <link rel="stylesheet" type="text/css" href="../../css/schrift_standard.css">
    </head>
    <body leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td rowspan="3" width="15">
    </td>
    </tr>
    <tr>
    <td height="20" bgcolor="#CCCCFF">
    <span class="schrift_fett">
    &nbsp;&nbsp;Übersicht&nbsp;&nbsp;
    </span>
    </td>
    <td height="20" bgcolor="#CCCCFF">
    <span class="schrift_standard">
    &nbsp;&nbsp;
    <a href="include_standard.php?disclaimer=<? echo urlencode ("disclaimer.php");?>">
    Disclaimer</a>&nbsp;&nbsp;
    </span>
    </td>
    </tr>
    </table>
    </body>
    </html>
    Wenn ich auf den Link klicke öffnet sich diese Datei wo die $disclaimer ausgeführt werden soll:
    <body leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
    <?
    include ("../../oben.php");
    ?>
    </tr>
    <tr>
    <?
    include ("menu_impressum.php");
    ?>
    </tr>
    <tr>
    <? echo $disclaimer; ?>
    </tr>
    <tr>
    <?
    include ("untermenu_impressum.php");
    ?>
    </tr>
    </table>
    </body>

    Was mache ich falsch, denn er gibt mir dann immer nur als Text Disclaimer.php aus.
    Mfg
    BenBay

  • #2
    Warum sollte er denn nicht "disclaimer.php" ausgeben, wenn die Variable, die du per GET überträgst "disclaimer.php" enthält? Wenn du den Inhalt der Datei anzeigen willst, dann lies doch Zeile für Zeile die Datei ein oder binde die ein mit include(), also include("$pfad/$disclaimer);
    Hello World

    Kommentar


    • #3
      Kannst du mir das anahnd meines Beispiels zeigen bitte? Also ich möchte den Inhalt der datei anzeigen! Denn jetzt gibt er ja nur den Text aus also disclaimer.php
      Mfg
      BenBay

      Kommentar


      • #4
        mit echo gibst du ja auch nur den wert $disclaimer aus!
        PHP-Code:
        <?php
        $disclaimer
        ="disclaimer.php";
        ?>
        <html>
        <head>
        <link rel="stylesheet" type="text/css" href="../../css/schrift_fett.css">
        <link rel="stylesheet" type="text/css" href="../../css/schrift_standard.css">
        </head>
        <body leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">
        <table border="0" cellspacing="0" cellpadding="0">
        <tr>
        <td rowspan="3" width="15">
        </td>
        </tr>
        <tr>
        <td height="20" bgcolor="#CCCCFF">
        <span class="schrift_fett">
          Übersicht  
        </span>
        </td>
        <td height="20" bgcolor="#CCCCFF">
        <span class="schrift_standard">
          
        <a href="include_standard.php?disclaimer=<?php echo $disclaimer;?>">
        Disclaimer</a>  
        </span>
        </td>
        </tr>
        </table>
        </body>
        </html>
        Wenn ich auf den Link klicke öffnet sich diese Datei wo die $disclaimer ausgeführt werden soll:
        <body leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">
        <table border="0" cellspacing="0" cellpadding="0">
        <tr>
        <?php
        include ("../../oben.php");
        ?>
        </tr>
        <tr>
        <?php
        include ("menu_impressum.php");
        ?>
        </tr>
        <tr>
        <?php include ("$disclaimer"); ?>
        </tr>
        <tr>
        <?php
        include ("untermenu_impressum.php");
        ?>
        </tr>
        </table>
        </body>
        [color=red]musse rühre, musse probiere=>iss a pulsgeber ![/color]

        Kommentar


        • #5
          include "disclaimer.php";
          I don't believe in rebirth. Actually, I never did in my whole lives.

          Kommentar


          • #6
            Hallo,
            danke es klappt. Es war nur ein kleiner ehler noch drin da er den Punkt nicht mitnimmt. Habe es jetzt so:
            $disclaimer:
            <?
            $disclaimer = disclaimer
            ?>
            Include:
            <?php include ("$disclaimer.php"); ?>

            Danke nochmals!!!
            Mfg
            BenBay

            Kommentar

            Lädt...
            X