與MySQL數據庫,並防止SQL注入我用:如何從輸出中刪除HTML標籤,但保持我工作的格式
$entities_correction = htmlspecialchars($Query, ENT_COMPAT, 'UTF-8');
然而,當我試圖表明的信息給用戶我得到了這個:
<p><strong>asdasdasdasdasd</strong></p><p><em>asdasdasdasd</em></p><ol><li><em>1</em></li><li><strong>2</strong><ol><li><strong>asdasdasd</strong></li></ol></li></ol><p><strong>adasbui</strong></p>
With the tags and all that stuff。如何刪除這些標籤,並在向用戶展示時看起來像這樣?
預期輸出:
asdasdasdasdasd
asdasdasdasd
-
- asdasdasd
adasbui
您如何向用戶顯示信息? – samrap
我使用的是: <?php echo htmlspecialchars_decode($ AsignacionTareas [「TareaDescripcion」])?> – jojeda
打印'$ AsignacionTareas [「TareaDescripcion」]'沒有'htmlspecialchars_decode'並告訴我們你得到了什麼。從源視圖複製結果,而不是網頁plz。 – Ahmad