我需要在模板中转换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>
这是一个输出:
答案 0 :(得分:1)
从我的问题中收集的内容,请尝试输出:
$html = htmlspecialchars_decode($content)
编辑:
echo $templContent = htmlspecialchars_decode($getTemplateRow['templ_content']);
答案 1 :(得分:1)
试试这个会帮助你
<?php
echo $htmlContent = htmlspecialchars_decode($getTemplateRow['templ_content'])
?>