Welcome Guest, Not a member yet? Register   Sign In
routes help
#1

[eluser]sasori[/eluser]
let's say I have 2 controllers
1) welcome controller
2) stocks controller

and then on the welcome_view page, I want a link that will redirect the user to the stocks_view page

is this correct ?, not sure if its with the $route config file or the code itself
Code:
echo anchor('stocks/stocks_view','proceed to stocks page');

should i add on the $route something like this ?
Code:
$route['default_controller'] = "welcome"; //this one is the main right ?
$route['default_controller'] = "stocks"; //<-- is this correct ?
#2

[eluser]flaky[/eluser]
you don't have to do nothing in the routes
just change the link to this
Code:
echo anchor('stocks','proceed to stocks page');
#3

[eluser]hendrawan[/eluser]
Code:
//remove this line
$route['default_controller'] = "stocks";




Theme © iAndrew 2016 - Forum software by © MyBB