text box value disappear when i clicked the submit button in CI i want to make it not disappear
$textbox_data = array(
'name' => 'playlist_text',
'id' => 'playlist',
'maxlength' => '200',
'size' => '100',
'style' => 'width:1070px',
'class' => 'form-control',
'value' => $textbox_value,
);
echo form_input($textbox_data);
$textbox_value = $this->input->post('playlist_text',TRUE);
could anyone help me? thanks :)