-1

我需要HTML在模板中转换。如图像内容所示,应显示为模板。我table用来显示 . 但现在我需要在模板输出中显示它

这是我的代码:

<table id="datatable" class="tablesorter"> 
    <span id='errfrmMsg'></span>
    <thead>
        <tr>        
            <th scope="col" id="">Name</th>
            <th scope="col" id="">Content</th>
        </tr>
    </thead>

    <tbody>
        <?php
            $templ_id = $_REQUEST['templ_id'];
            $getTemplateQuery = mysql_query("select * from templates where id = $templ_id");
            $getTemplateRow = mysql_fetch_array($getTemplateQuery);
        ?>
        <tr>
            <td valign="top" width="125"><?php echo $getTemplateRow['templ_name'];?></td>
            <td valign="top" width="319">
            <?php
                echo $templContent = $getTemplateRow['templ_content'];
?>
        </tr>
    </tbody>
</table>

这是一个输出:

在此处输入图像描述

4

2 回答 2

1

根据我从您的问题中收集到的信息,尝试输出:

$html = htmlspecialchars_decode($content)

编辑:

echo $templContent = htmlspecialchars_decode($getTemplateRow['templ_content']);

于 2012-12-27T11:26:03.980 回答
1

试试这个对你有帮助

<?php

echo $htmlContent = htmlspecialchars_decode($getTemplateRow['templ_content']) 

?>
于 2012-12-27T11:28:34.120 回答