这是我代码的片段:
<?php
if (!defined( BASEPATH )) {
exit( No direct script access allowed );
}
class sample{
function __construct() {
$this->ci = & get_instance();
}
public $name;
public $style;
function set_data($data)
{
/* List of parameters that you can set */
$this->name = (isset($data[ name ]) ? $data[ name ]: ); // Set select name
$this->style = (isset($data[ style ]) ? $data[ style ]: ); // Set select style
}
function select_both_dropdown()
{
$select = <select name=" .$this->name. " class="chzn-select" style=" .$this->style. "> ;
$select .= <option value=""></option> ;
$select .= </select> ;
return $select;
}
主计长:
$data[ select ] = $this->sample->select_both_dropdown(array(
name => eventselect ,
style => min-width: 247px;
));
How it is being loaded in controller: function _construct() { parent::_construct(); $this->load->library( tank_auth ); $this->load->library( sample ); }
当选中的屏幕上加载时, 没有填充任何内容 。 没有名称, 没有样式等 。 我做错了什么?