Hi, i have many text like this column1="great,null,nothing" etc.... how would I insert text with commas as above in columns.
Should i do. Insert into table values($text1,$text2,$text3) ##where text1,text2, text3 has the same format as ###"great,null,nothing" How about updating? Update table1 SET column=$text1, column2= $text2 ... WHERE id = $id any help is appreciated! Anthony
