I have an HTML table I have stripped down to get rid of a bunch of unwanted code, and am left with this:
http://www.bladekeep.com/tmp/ps3.dat
Is there a way to grab only the following information out of the HTML code?
Medar
Test Server1
2
17
Lead Manager
17721
177
944
N/A
988
1932
June 1, 2004
I have tried parsing it looking for identifier tags, but cannot get it to work properly. I also tried displaying lines...
$lines = file('ps3.dat');
print $lines[407];
print $lines[408];
print $lines[410];
etc etc...but that did not work either, as it grabbed part of the HTML instead of just the data.
What I am doing, is pulling this off one of my sites, and storing it in a database on a separate site.
Thanks for any suggestions on functions, etc! Not new to PHP, but I have never tried parsing anything before.