Hi All
Just a quick question, I'm having difficulty taking a value from a text file
first,second,third
for examples works fine when i explode it from the file but when the file reads
Button one,link,status (there is a space between two words)
it only returns the first word
list($settingname, $value, $adminlevel) = explode(",",$line);
even though i'm not seperating the sections with a space in the explode command it returns "button", rather than "button one"
Any help would be very much appreciated
Tim