10-01-2015, 10:19 AM
I fixed the "error" using the convert_accented_characters function, for example:
But I wanted to know why codeigniter doesn't accept these characters. It is for safety? or a compatibility issue?
PHP Code:
$insert = array(
'id' => $id,
'qty' => $quantity,
'price' => $product->price,
'name' => convert_accented_characters($product->name),
);
But I wanted to know why codeigniter doesn't accept these characters. It is for safety? or a compatibility issue?