wie kann man ein Bild in DTD enfügen??

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

  • wie kann man ein Bild in DTD enfügen??

    Weiß jemand wie man ein Bild in DTD einfügt also ich will n Feld wo der User ein img einfügen kann. macht man das mit nem normalen Text input?
    Lurchi ! Lurchi ! Lurchi !

  • #2
    Ich glaube kaum, dass ein TextFeld Tags akzeptiert... Damit kannst du dort bestimmt kein Bild einbauen.
    Oder meinst du ein Upload wo der User den Pfad und nicht das Bild einfügen kann ?

    Gruss

    tobi
    Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

    [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
    Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

    Kommentar


    • #3
      ich will das der User den Pfad eingeben kann...
      Lurchi ! Lurchi ! Lurchi !

      Kommentar


      • #4
        und wie geb ich dann das Bild im xsl aus?
        Lurchi ! Lurchi ! Lurchi !

        Kommentar


        • #5
          Also doch Upload. Dann mal http://us2.php.net/manual/de/features.file-upload.php und selfhtml anschauen.

          Gruss

          tobi
          Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

          [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
          Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

          Kommentar


          • #6
            danke probiers mal aus ich find keine gute erklärung von XML/XSL/DTD...
            Lurchi ! Lurchi ! Lurchi !

            Kommentar


            • #7
              Bild in XML/XSL/DTD

              Vielleicht suchst Du was in der Art:

              DTD-file
              ****************
              <!ELEMENT BLECH (BEZEICHNUNG_1,FORM,BILD?,EINHEIT?,DATEN+)>
              .
              .
              <!ELEMENT BILD (BILD_N,BILD_W,BILD_H)>
              <!ELEMENT BILD_N (#PCDATA)>
              <!ELEMENT BILD_W (#PCDATA)>
              <!ELEMENT BILD_H (#PCDATA)>
              .
              *********************

              XML-file
              ************************
              <!DOCTYPE BLECH SYSTEM "../BLECHE/BLECH.DTD">
              <?xml-stylesheet type="text/xsl" href="../BLECHE/BLECH.XSL"?>
              <BLECH>
              .
              .
              <BILD>
              <BILD_N>BLECH_1_4301.BMP</BILD_N>
              <BILD_W>300</BILD_W>
              <BILD_H>200</BILD_H>
              </BILD>
              .
              .
              </BLECH>
              *****************

              XSL-file
              ****************
              <table>
              <xsl:for-each select="BLECH">
              <tr>
              <td>
              <img>
              <xsl:attribute name="src"><xsl:value-of select="BILD/BILD_N"/></xsl:attribute>
              <xsl:attribute name="width"><xsl:value-of select="BILD/BILD_W"/></xsl:attribute>
              <xsl:attribute name="height"><xsl:value-of select="BILD/BILD_H"/></xsl:attribute>
              </img>
              </td>
              </tr>
              </xsl:for-each>
              </table>
              **********************

              Kommentar

              Lädt...
              X