I'm reading from already-made text file, which has fileds spederated by tabs (\t), but PHP recognize only the first word of each fields as the string, instead of all the words until next field.
Here is how i'm reading a line in the current program:
fscanf ($fp, "%s\t%s\t%s\n", &$file, &$title, &$comment);
How can I fix it? What do I need to change in the program, to make it work well?