PHP的Tabledit jQuery插件没有在表格中显示图像

时间:2017-07-23 07:42:17

标签: javascript php jquery mysql html-table

我正在使用jQuery-Tabledit插件来编辑从MySQL数据库中检索的表数据,但问题是,它没有显示图像而是在图像字段中显示空白!如果我查看源代码,我可以从数据库中看到所有检索到的图像。

以下代码

    <div class="container">  
    <br />  
    <br />  
    <br />  
    <div class="table-responsive">  
        <h3 align="center">Care Live Image Upadate</h3><br />  
        <table id="editable_table" class="table table-bordered table-striped">
            <thead>
                <tr>
                    <th>ID</th>
                    <th>Image Name</th>
                    <th>Upload Date</th>
                </tr>
            </thead>
            <tbody>
                <?php
                while($row = mysqli_fetch_array($result))
                {
                    echo "<tr>";
                    echo "<td>" . $row['id'] . "</td>";
                    echo "<td><img src='../dashboard/images/".$row['name']."'></td>";
                    echo "<td>" . $row['uploaded_on'] . "</td>";
                    echo "</tr>"; 
                }
                ?>
            </tbody>
        </table>
    </div>  
</div>  

empty fields mysql retrival success

0 个答案:

没有答案