Posts Tagged with 'CodeIgniter'
How to set or get config variables in Codeigniter?
Codeigniter | SET or GET config variables The config set_item() & item() functions are work for SET and GET a config variable in codeigniter In Codeigniter, by default, all config variables are located at the “application/config/config.php” …
What is the default URL pattern used in Codeigniter framework?
Codeigniter | The default URL pattern In CodeIgniter, URLs are designed to be search-engine and user-friendly. CodeIgniter uses a segment-based approach rather than using a "query string" based approach. http://www.example.com/user/edit/rakesh The default URL pattern in …
How many types of messages can you log in Codeigniter?
Codeigniter | Types of error logging There are three message types in Codeigniter: Error Messages These are actual errors, such as PHP errors or user errors. Debug Messages These are messages that assist in debugging. …
How to include image, css and js file in codeigniter?
Codeigniter | Include image, CSS, and js file In Codeigniter, we need to load URL helper in the controller and then use the base_url() function to load the resources. // loading script <script type='text/javascript' src="<?php …
what is Cross-site scripting?
Cross-site scripting (XSS) Cross-site scripting (XSS) is a type of computer security vulnerability typically found in web applications. XSS enables attackers to inject client-side script into web pages viewed by other users. A cross-site scripting …
How to remove index.php in codeigniter?
Codeigniter | Remove index.php from URL in Codeigniter? The file index.php is the root file of Codeigniter. it contains setting code for CodeIgniter. So, when we redirect to other pages the URL comes with index.php …