I'm trying to parse log fields, using fopen
My lines start with < and end with >
Therefore they are being ignored when I read them... Any ideas?
uhm.. fopen reads everything. Maybe you don't see the lines because they are hidden in your browser by the <> tags. Try using echo htmlspecialchars($line_from_file);
Thanks Vincent,
I'm one step closer <grin>
Basically just trying to parse a log...
I couldn't find any documentation on this, so I'm getting creative.