I am trying to figure out how to take multiple word input in a single text box in a form with each word separated by comma(,) and then paring the word based on comma and inserti
If you need to encapsulate the words in quotes, this should do the trick:
Output:
insert into table1 (columnName) values (('sometext'),('someothertext'),('and something else'))
This will insert multiple records in proper accordance with the mysql insert multiple values syntax.