-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 に答える