I want to create new view for testing purposes inside the Code igniter directory, where one view directory already exist. How can I create another view and fetch result coming from controller?
Why do you need new directory? I recommend you to name views like "test_NAME-OF-VIEW" and in controller use some function like "test_SOME-SECURITY-CODE_NAME-OF-FUNCTION(PAGE)"
It is possible to make new VIEW folder, but you will have to change some codeigniter system files and that's what you should not do.
As of codeigniter 3.*+ you can make folder in view folder, so for example: application/views/test/home_view.php and then load view like this:
$this->load->view("test/home_view");
I found a way out of this, i just created another copy of CodeIgniter outside the WebService Directory and there it is easily accessible and i can do testing too.
<?php echo'loudfind.com'; ?>