View loses the path as the case of the controller call |
Hi All!
I'm using the controller: PHP Code: public function test() { to call the view-page "messages_view.php", which shows a picture: Code: <!DOCTYPE html> By sending: http://localhost/testproject/index.php/employee/test/ It works fine! But if I have transfer parameters like: PHP Code: public function test($var1, $var2) { By sending: http://localhost/testproject/index.php/e...e/test/1/2 the messages_view.php loses the path to the picture! It seems that the deep of the path depends on the amount of the called transfer parameters. How could I resolve this situation? |
Messages In This Thread |
View loses the path as the case of the controller call - by smallbug - 04-06-2015, 11:46 AM
RE: View loses the path as the case of the controller call - by CroNiX - 04-06-2015, 11:55 AM
RE: View loses the path as the case of the controller call - by smallbug - 04-06-2015, 12:07 PM
|