Reputation: 367
I am using Codeigniter to developing an application. My doubt is in the view i am using normal html tags. Is it a good method or should I use codeigniter's native tags for creating html tags?
Upvotes: 1
Views: 45
Reputation: 2852
the best way is:
you should use the codeigniter native tags, because, it achieves the better security mechanaism the ci framework have. (security features such as xss_clean are worked with the ci tags)...
Upvotes: 2