From pdf file,i copied kannada words and paste it on the ckeditor,but it made some other fonts,how can i get proper kannada on the ckeditor and i want to insert it into database using codeigniter framework.please help me....My code for ckeditor integration is given below,
(Javascript code)
<script src="//cdn.ckeditor.com/4.5.8/standard/ckeditor.js"></script>
<script>
$(function () {
$('#editor1').ckeditor({
toolbar: 'Full',
enterMode: CKEDITOR.ENTER_BR,
shiftEnterMode: CKEDITOR.ENTER_P
});
});
</script>
(HTML code)
<textarea class="ckeditor" cols="80" id="editor1" name="editor1" rows="10"></textarea>