I am a newbie to PHP. I want to count the occurrence of a specific word in a MySQL db row. For example: There are two columns name and description.
---------------------------------------------------------------
| name | description |
---------------------------------------------------------------
| abcd | My name ***is*** abcd. My father's name ***is*** xyz |
---------------------------------------------------------------
| xyzt | My name ***is*** xyz. I am a good girl. |
---------------------------------------------------------------
I want to count the occurrence of the word 'is' from the 1st row description column. In the above example, 'is' occurs twice in the 1st row and once in the second row. Please guide me for the same.