Boolean Island !

Bangla Web App

Posted by: ranacse05 on: May 20, 2008

Last day one of my friend came to me.He was facing a problem (he solved later).Here is his problem –
The Bangla/Unicode data become ?????? in his page.

I’m gonna tell u today step-by-step what u need to do if u wanna develop Bangla/Unicode based Web App.

#1 . First make the database with CHARACTER utf8 and collation_connection =’utf8_general_ci’
#2 . Make the Tables with same configuration.
#3 . When u connect the database use following 2 lines just below the mysql_select_db()

mysql_query(’SET CHARACTER SET utf8′);
mysql_query(”SET SESSION collation_connection =’utf8_general_ci’”);

#4 . Set the META-TAG as “Content-Type: text/html; charset=UTF-8″

Thats it :D u r done.Here is a sample page what will show data from database

<?
header(’Content-Type: text/html; charset=UTF-8′); //As its php page i dont need the meta-tag so i need to send a header .

mysql_connect(’localhost’,'xxxxx’,'xxxxxx’) or die(’Error In connection’);
mysql_select_db(’test’) or die(’Error In connection(DB)’);

mysql_query(’SET CHARACTER SET utf8′);
mysql_query(”SET SESSION collation_connection =’utf8_general_ci’”);

$re = mysql_query(”SELECT * FROM test”) or die(’Query Problem’);
while($row = @mysql_fetch_assoc($re))
echo $row['name'].PHP_EOL;
?>

6 Responses to "Bangla Web App"

nice rana.

macromedia te html page a kivbe bangla show korbe ata nie akta post kor plz.

Great!! helpful for my self project….

Nice article Rana, Kudos

Thanks for the great work with programming codes.

techbangla.net e apnake amontron.

Wow,i’ve reached here lately but this article is really going to help me.

Leave a Reply

My blog worth


My site is worth $3431.
How much is yours worth?

My Twittes

Error: Twitter did not respond. Please wait a few minutes and refresh this page.

FireFox

Firefox 3

My Facebook

this is Raquibul's profile

View Raquibul Islam's profile on LinkedIn

My fav

 

May 2008
S M T W T F S
« Apr   Jun »
 123
45678910
11121314151617
18192021222324
25262728293031

Flickr Photos

Tea !

History

me

me

ramsagor

me,monga,mim

me,monga,mim

me,monga,mim

More Photos

My Bookmarks

Dynamic Malloc

Blog Stats

  • 36,018 hits