I have long external txt list like this: dddd ggggb btbtgbgb gtrbr . . . and I want each item to be like this: 'dddd', 'ggggb', 'btbtgbgb', 'gtrbr', how is this done with php?
read the file & extract each element by new line . yoo will get a array. then implode the array by ',\n' & add the single quote befre & at then end of result.