从数据库中检索和显示图像,不以适当的格式显示图像

时间:2013-10-27 10:17:46

标签: php wordpress wordpress-plugin woocommerce

我正在使用woo-commerce插件。我有自定义插件来从前端添加产品,它工作正常,我已经成功地将数据添加到数据库中,现在我必须将该产品图像显示到class =“product -thumbn因为我的产品下面是我的代码我不知道如何做到这一点。

<td class="product-thumbnail" >
            <?php
              global $wpdb;
           $result = $wpdb->get_results ( "SELECT * FROM user_templates  where id= '14' " );

             foreach ( $result as $print )  
           echo $print->BgImageName;

         echo '<img src="/user_templates/'.$print->BgImageName.'"/>';
                                       ?>
             </td>

我在这里得到一个波纹管输出我只得到图像名称而不是图像。

enter image description here

1 个答案:

答案 0 :(得分:0)

得到正确答案......

<td class="product-thumbnail" >
                <?php
    global $wpdb;
     $result = $wpdb->get_results ( "SELECT * FROM user_templates  where id= ".$_SESSION['user_te']);
    foreach ( $result as $print )  
    $img_post=$print->BgImageName;
     // echo '<img src="src="../user_templates/'//.$print->BgImageName.'"/>';
        ?>                                                   
     <image height="100"src="../user_templates/<?php echo $img_post;?>" />

      </td>