2014-04-20 86 views
-4

我呼應的是,最初插入MySQL數據庫的信息:PHP呼應了標籤

<div><table class="table table-bordered"><tbody><tr><td><i>sadf</i></td><td>sdf</td></tr><tr><td><font style="font-size: 36px;">sdaf</font></td><td><span style="background-color: yellow;">sadf</span></td></tr></tbody></table>sadfasdf</div><div><br></div> - John MasCodger 

我希望它與格式呼應出來,但它是從字面上與tags-呼應出沒有格式。

+3

請發送一個完整的代碼 - 你忘了,包括在您的文章 –

+2

PHP代碼是你的MySQL數據htmlentitied ? – andrew

+2

PHP代碼你送到這裏並不涉及所有 – Linek

回答

0

嘗試

echo html_entity_decode($row["htmlcode"]); 
+1

你應該解釋爲什麼你認爲這解決了他們的問題 –

0

如果你不想在你的輸出HTML標記,你可以使用strip_tags

例如:

<?php echo strip_tags($row["html"]); ?>