I couldn't print the value for slider range, what I 've to do? this is my code
<?php
$salary=array(
'type'=>'range',
'name'=>'salary',
'id'=>'salary',
'class'=>'slider tags',
'value'=>'',
'data-slider-min'=>1,
'data-slider-max'=>30,
'data-slider-step'=>1,
'data-slider-value'=>'[1,1]',
'rules'=>'required');
echo form_input($salary); ?>