私は CodeIgniter の初心者です。私はビューでjavascript関数を作成し、これで変数を定義するプロジェクトを作成しています..次のようになります
var $rowCount=0;
function invest() {
$rowCount=$('#ulinvestment').find('.rowInvestment').length;
}
私のコントローラ関数が含まれています
function input(parameter //i want to pass $rowcount value here ){
$this->load->helper('form');
$this->load->helper('html');
$this->load->model('mod_user');
$this->mod_user->insertdata();
}
コントローラー関数で変数にアクセスしたいのですが$rowCount
、どうすればできますか?