1

How to convert ms word text into html tag... ms word bullet shown as it is in database.. while I am checking this in wordpress, wordpress convert space into &nbsp; and bullet into <ul><li> but i need this function in my core php...

i am saving this ms word text into database:-

•Replace your toothbrush every three months. •Interdental brushes come in various sizes. It may be helpful to ask your dentist or hygienist to show you the correct sizes for your mouth.

but same result is save in databse

while check this using wordpress, wordpress save this in database like

  • Replace your toothbrush every three months.
  • Interdental brushes come in various sizes. It may be helpful to ask your dentist or hygienist to show you the correct sizes for your mouth.
  • i want wordpress like result in my core php what can i do plz help

    Billal Begueradj
    • 20,717
    • 43
    • 112
    • 130
    • check http://stackoverflow.com/questions/24631088/how-to-insert-html-code-into-db-using-php – Aman Kumar Mar 15 '17 at 07:16
    • @AmanKumar
    • Replace your toothbrush every three months.
    • Interdental brushes come in various sizes. It may be helpful to ask your dentist or hygienist to show you the correct sizes for your mouth.
    • i need this typ of result.. i am using this function mysql_real_escape_string(); , also i am using htmlspecialchars($hcode, ENT_QUOTES); function but bullet [•] show instead of
    • – Verification Check Mar 15 '17 at 07:21