01-21-2011, 09:16 AM
[eluser]reka[/eluser]
when I load the Library Smiles in a one function, on the views option, the second smileys come into the first smiley
here my function...
when I load the Library Smiles in a one function, on the views option, the second smileys come into the first smiley
here my function...
Code:
function news($key = NULL){
$image_array = get_clickable_smileys(base_url().'includes/images/emoticons', 'comment');
$col_array = $this->table->make_columns($image_array, 4);
$data['smiley_table'] = $this->table->generate($col_array);
$image_array2 = get_clickable_smileys(base_url().'includes/images/emoticons', 'pesan');
$col_array2 = $this->table->make_columns($image_array2, 4);
$data['smiley_table2'] = $this->table->generate($col_array2);
$this->load->view('public_home', $data);
}