Thank you for the clarification, Joseph. I don't want to accept Html from the form. I only noticed that html is stripped and the rest isn't escaped. Hence
Thank you for your answers! @Amy: I like this ressource very much but I think that some of the parts are especially written for Joomla 1.0. The framework of Joomla 1.5 relieves us some of the work, but I don't know exactly which work in my case. @jlleblanc: I am using in the model some code from web...
Hello, in the model file I get some post data from a form: $data = JRequest::get( 'post' ); In the controller.php I get the model and store it to the database: $model = $this->getModel( 'form' ); if ($model->store()) { $msg = JTex...