XML Hyper link problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Fary4u
    Contributor
    • Jul 2007
    • 273

    #1

    XML Hyper link problem

    Hi
    is any body know how to create the hyper link with following code i can't do it ?

    <?xml version="1.0" encoding="utf-8" standalone="yes "?>
    <images>
    <pic>
    <image>img/1.jpg</image>
    <logo></logo>
    ? ? ? <WEBSITE>http ://www.domæne.dk</WEBSITE> ? ? ?
    <details>Weekni ghts at 8pm</details>
    </pic>
    </images>

    thanks in advance
  • jkmyoung
    Recognized Expert Top Contributor
    • Mar 2006
    • 2057

    #2
    <a href="http://www.domæne.dk"> Weeknights at 8pm</a>

    Using xslt:
    <a href="{WEBSITE} "><xsl:valu e-of select="details "/></a>

    Comment

    • Fary4u
      Contributor
      • Jul 2007
      • 273

      #3
      Hi

      thanks for replying you mean like this ?

      [CODE=xml]
      <?xml version="1.0" encoding="utf-8" standalone="yes "?>
      <images>
      <pic>
      <image>img/1.jpg</image>
      <logo>Somthin g</logo>
      <a href="http://www.domæne.dk">
      <details>Weekni ghts at 8pm</details>
      </a>
      </pic>
      </images>
      [/CODE]

      Comment

      • jkmyoung
        Recognized Expert Top Contributor
        • Mar 2006
        • 2057

        #4
        What are you using to process your xml?
        Flash? javascript? XML? DOM?

        Basically, where are you feeding the xml into?

        Comment

        Working...