my controller code is-
<?php
class Site extends CI_Controller
{
function index()
{
echo "Under Construction.";
}
function signup()
{
$this->load->model('site_model');
$data['countries']=$this->site_model->get_countries();
$this->load->view('signup_view',$data);
}
function login()
{
echo "This is working.";
}
}
?>
When i open signup page .the signup view repeats many time.