Ajax drop down for Country State & City in Codeigniter?

前端 未结 3 1069
温柔的废话
温柔的废话 2021-01-29 14:56

I am making country state and city drop down with the help of ajax in our codeigniter frame work .

The structure of database given bellow.

Country

3条回答
  •  鱼传尺愫
    2021-01-29 15:44

    function get_cities($Country){
      $this->load->model('city_model');
      header('Content-Type: application/x-json; charset=utf-8');
      echo(json_encode($this->cities_model->get_cities($dealCountry)));
    }
    

    In this function, you put incorrect variable name $dealCountry.

提交回复
热议问题