Reputation: 1483
I am using cakephp version 2.7 . In my view I van show static bangla. But when I get data from database then bangla font not working.
Upvotes: 0
Views: 546
Reputation: 2795
Check your
layout
file have below line -
For HTML5
<head>
<meta charset="utf-8">
</head>
Also set your Database Collation
to utf8_general_ci
Search and Uncomment below line from
app/Config/database.php
file
//'encoding' => 'utf8',
TO
'encoding' => 'utf8',
Upvotes: 1