我对代码点火器非常陌生,我得到了它如何工作的基础知识,我已被要求编写一个我从未做过的帮助器,结果是调用帮助器并且它填充下拉框或具有不同字段的框,一旦选中,下一个框将根据之前选择的内容动态更改。在这种情况下,选择一个工作行业,然后下一个选择将是他们在该行业内的工作。
我不知道如何解决这个问题我发现的几个教程在基于硬编码文本的下拉框方面非常直接。
道歉,但我是代码点火器的新手,下面的代码是给我工作的,我不是使用代码的粉丝我没有建立自己所以道歉,如果名字不匹配帮助文件
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
if (!function_exists('get_industry')) {
function get_industry() {
// function code to go here
}
}
if (!function_exists('get_occupation')) {
function get_occupation() {
// function code to go here
}
}
if (!function_exists('get_hmrc')) {
function get_() {
// function code to go here
}
}
模型
?php
class m_sectors extends CI_Model {
public function __construct() {
parent::__construct();
}
public function get_industry(){
$this -> db -> distinct() -> select('industry') -> from('frontend_sectors');
$query = $this -> db -> get();
return $query -> result();
}
public function get_titles($sector){
}
}
?>
控制器
<?php
class sectors extends CI_Controller {
public function __construct() {
parent::__construct();
$this -> load -> model('m_sectors');
}
function index(){
print_r($this -> m_sectors -> get_industry());
}
}
?>