php 过滤htm标签函数
PHP在调用动态的时候,数据库中含有html标签,导致调用出错。。可以利用什么函数来添除这些html标签。。或别的办法。。。/<?php
/*
[NetMao!] (C)2001-2008 NetMao.com
This is NOT a freeware, use is subject to license terms
For further information go to http://www.netmao.com
*/
require_once './inc/common.php';
$mid = intval($mid);
if(!$mid) exit;
$result = $db->query("select content from {$tablepre}movies where mid='$mid'");
if($db->num_rows($result)==1){
$db->query("update {$tablepre}movies set hits=hits+1 where mid='$mid'");
$r=$db->fetch_array($result);
$content=$r[content];
echo "try {setidval('content','".$content."');}catch(e){}\n";
}
?>
这是php代码。如何增加。。。望高手帮忙。。。
补充:<span id="content"><strong>{$movie[name]}</strong>剧情介绍加载中,请稍等几秒!!</span>网站上是用这段来调用的。