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