Hi,
I got my Solution..
What i Did is this..
Put a UTF Encoding text to instruct the browser
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
And use these queries before any other query execute in that script
$query="SET NAMES 'utf8' ";
$result=mysql_query($query);
$query="SET CHARACTER_SET utf8;";
$result=mysql_query($query);
Hope that Help others in future..