Hello all!
I have a login page that has a register button. Issue is that when I cant link the register button to my register_page.php. I keep getting 404 PAGE NOT FOUND when I have the page in my view folder. This is my code:
public function index()
{
$this->load->view('welcome_message');
}
public function hello()
{
$this->load->view('header');
$this->load->view("login");
$this->load->view('footer');
}
public function register()
{
$this->load->view('header');
$this->load->view("register_page");
$this->load->view('footer');
}
Do I have to have multiple functions or just have one? Do I use an anchor? Ive tried a different controller(Register.php) but that didnt work either. Thanks for the help.

,
Mekaboo