I am trying to strip all html tags except <p>,<br>,<strong>,<b>
from input data from the following:
public function init()
{
parent::init();
$this->fields = array(
'name' => 'Name',
'age' => 'Age',
'profile' => 'Profile',
);
$this->mdata = array();
$this->verify = true;
}
Anyone knows how to apply Zend_Filter_StripTags in it?