![]() |
posting code tag in form - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Model-View-Controller (https://forum.codeigniter.com/forumdisplay.php?fid=10) +--- Thread: posting code tag in form (/showthread.php?tid=76780) |
posting code tag in form - sigounet - 06-19-2020 hello , i started to get on my old code ingiter website recently and i forgot alot of things ![]() because when i try to post things like <iframe src="https://www.facebook.com/plugins/video.php? allowFullScreen="true"></iframe> the < get changed to < and i cant seem to find where to look if someone could point me in the right direction ![]() i have to modify directly in database actualy to get it to work this is my controller : PHP Code: public function news_new() my model : PHP Code: public function add_news() and form validation Code: 'news' => array( thx for helping out RE: posting code tag in form - jreklund - 06-19-2020 Check to see if you have the global XSS filter on. RE: posting code tag in form - sigounet - 06-19-2020 oh my forgot about that , yes indeed global xss filter was on thx a lot ![]() |