2016-01-23 43 views
0

每當我使用yii擴展tinymce,保存我的輸入後,它變成代碼。例如,如果我輸入「示例文本」,它會顯示爲有沒有從tinymce yii查看文本的方法?

<p>&nbsp;sample text</p> 

我想知道是否有可能從管理的只是簡單的文本查看....

誰能幫助?

這是TinyMCE的 enter image description here

當我保存這個它是這樣的,這就是我要改變,如果它是可能的。

enter image description here

到打印出來我用這個代碼:

<h3 class="header">  <?php 
if (!$link = mysql_connect('localhost', 'root', '')) { 
echo 'Could not connect to mysql'; 
exit; 
} 

if (!mysql_select_db('hygeia_master', $link)) { 
echo 'Could not select database'; 
exit; 
} 

$sql = 'SELECT title FROM about_histback order by datetime desc limit 1'; 
$result = mysql_query($sql, $link); 

while ($row = mysql_fetch_assoc($result)) { 
echo $row['title']."<br>"; 
} 


?> 
    <span class="header-line"></span> 
    </h3> 
    </div> 
    <div class="row-fluid">   

    <div class="span6"> 
    <?php 
if (!$link = mysql_connect('localhost', 'root', '')) { 
echo 'Could not connect to mysql'; 
exit; 
} 

if (!mysql_select_db('hygeia_master', $link)) { 
echo 'Could not select database'; 
exit; 
} 

$sql = 'SELECT historical_background FROM about_histback order by  datetime desc limit 1'; 
$result = mysql_query($sql, $link); 

while ($row = mysql_fetch_assoc($result)) { 
echo $row['historical_background']."<br>"; 
} 


?> 
</div> 

所以顯示是這樣的enter image description here

+0

向我們展示您目前爲止的內容,打印出來以及如何收到數據。 – Xorifelse

+0

從我打印出來的地方看起來很好。我只想讓管理員以相同的方式打印出來,而不是顯示代碼。我更新了問題 – shychotc

+0

你不只是'strip_tags()'你在管理中顯示它的位置嗎? –

回答

0

CDetailView對於每個屬性的Param類型:

$this->widget('zii.widgets.CDetailView', array(
    'data'=>$model, 
    'attributes'=>array(
     // First example 
     'fieldName:raw', // raw: the attribute value will not be changed at all. 
     // Second example 
     'fieldName:text', //text: the attribute value will be HTML-encoded when rendering. 
     // Third example 
     'fieldName:html', // html: the attribute value will be purified and then returned. 
     // Fourth example 
     array(
      'name' => 'fieldName', 
      'type' => 'ntext', // ntext: the formatNtext method will be called to format the attribute value as a HTML-encoded plain text with newlines converted as the HTML <br /> or <p></p> tags. 
     ), 
    ), 
)); 

更多細節you cand find i其他列表還支持輸出類型。

+0

謝謝你:D – shychotc

相關問題