How to display an image inside an HTML table using XSL code?

I created an XSL stylesheet for my XML web service. I have a link to an image that is displayed on a database in my HTML. But my XSL only displays the link, but not the image that contains the link. I want to display a live image inside an HTML table using XSL.

This is my XSL code.

    <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <body>
    <h2>Birdcatch XSLT</h2>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>id</th>
        <th>Species</th>
        <th width="50%">About_bird</th>
        <th>Date_added</th>
        <th>Address</th>
        <th>Age</th>
        <th>Sex</th>
        <th>Latitiude</th>
        <th>Longitiude</th>
        <th>Image</th>
        <th>Added_by</th>
      </tr>
      <xsl:for-each select="Birdcatch/BIrds/Bird">
      <tr>
        <td><xsl:value-of select="@id" /></td>
        <td><xsl:value-of select="Species" /></td>
        <td><xsl:value-of select="About_bird" /></td>
        <td><xsl:value-of select="Date_added" /></td>
        <td><xsl:value-of select="Address" /></td>
        <td><xsl:value-of select="Age" /></td>
        <td><xsl:value-of select="Sex" /></td>
        <td><xsl:value-of select="Location/Latitiude" /></td>
        <td><xsl:value-of select="Location/Longitiude" /></td>
        <td><xsl:value-of select="Image" /></td>
        <td><xsl:value-of select="Added_by" /></td>
      </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>

I want to display an image in an Image col column in a table. How can i do this?

+4
source share
2 answers

Instead:

<td><xsl:value-of select="Image" /></td>

to try:

<td><img src="{Image}"></img></td>

Unconfirmed as XML source not provided.

+1
source

strpos, td id class td,

<td class="img"><xsl:value-of select="Image" /></td>

    $start = strpos($html, '<td class="img">') + 16;
// we are going to start getting from <td class="img">
    $length = strpos($html, '"></td>') - $start;
    $src = substr($html, $start, $length);

echo $src;

edit: php, jquery

 $(document).ready(function(){

   $.ajax({
    type: "GET",
    url: "yourxml.xml",
    dataType: "xml",
    success: function(xml) {
    }
    $(xml).find('addtaginyourdataloop').each(function(){
    var $start=  var $row = $(this).closest("td").text();
    var $text = $start.find(".img").text(); 
     alert($text); //and we get the url.
    });
    });
0

Source: https://habr.com/ru/post/1584689/


All Articles