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?
wie kann man ein Bild in DTD enfügen??
Einklappen
X
-
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
tobiGutes 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)
-
Also doch Upload. Dann mal http://us2.php.net/manual/de/features.file-upload.php und selfhtml anschauen.
Gruss
tobiGutes 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
-
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
Kommentar