hello,
mb_substr extension is not added to my server in php. in order to mb_substr i can use the prelacement line below but the characters do not support UTF-8,
ori code
mb_substr(strip_tags($best_sellers['products_name']), 0, 25, 'UTF-8').' ...';
i tried html_entity_decode, htmlspecialchar.. and so but i did not made it.
UTF-8 must be added somehow.
replacement code
substr(strip_tags($best_sellers['products_name']), 0, 25).' ...' . '</a>';
regards