I'm trying to do a simple hobby project for a game I play, but can't seem to get the specific info I need. This is a screen shot of the type of web page I want to grab text off of:
http://i.imm.io/nlXM.png
I want to be able to load this page, and via JS or Jquery grab that list of players and their ships and insert it into a MySQL database on my own personal web site to track, organize and analyze.
This is an example of the source code on that page:
Code: Select all
<TR><TD ALIGN=CENTER><IMG SRC=images/clear.gif HEIGHT=8 WIDTH=1 BORDER=0><BR>
Starships in Grid<BR>
<IMG SRC=images/clear.gif HEIGHT=5 WIDTH=1 BORDER=0><BR>
<TABLE CELLPADDING=2 CELLSPACING=0 WIDTH=100% BORDER=0>
<TR>
<TD BGCOLOR=#151515 WIDTH=16><IMG SRC=images/user/54413_mini1.gif WIDTH=16 HEIGHT=16 BORDER=0></TD>
<TD BGCOLOR=#151515 WIDTH=1><IMG SRC=images/clear.gif HEIGHT=1 WIDTH=1 BORDER=0></TD>
<TD BGCOLOR=#151515><FONT COLOR=#9D9DA1><A HREF='index.php?go=ship_info&ship_id=79623' ONMOUSEOVER="window.status=''; return true">Boreas</A> (<A HREF='index.php?go=class_info&class_id=14' ONMOUSEOVER="window.status=''; return true">BTR</A>)</FONT></TD>
<TD BGCOLOR=#151515 WIDTH=1><IMG SRC=images/clear.gif HEIGHT=1 WIDTH=1 BORDER=0></TD>
<TD BGCOLOR=#151515><FONT COLOR=#9D9DA1>owned by Cpt. <A HREF='index.php?go=user_info&user_id=54413' ONMOUSEOVER="window.status=''; return true">Mindless</A> of the <A HREF='index.php?go=faction_info&faction_id=464' ONMOUSEOVER="window.status=''; return true">Black Beach Alliance</A>
</FONT></TD>
<TD BGCOLOR=#151515 WIDTH=1><IMG SRC=images/clear.gif HEIGHT=1 WIDTH=1 BORDER=0></TD>
<TD BGCOLOR=#151515 ALIGN=RIGHT><FONT COLOR=#9D9DA1>Scan</FONT></TD>
</TR>
<TR>
<TD BGCOLOR=#101010 WIDTH=16><IMG SRC=images/faction/464_mini12.gif WIDTH=16 HEIGHT=16 BORDER=0></TD>
<TD BGCOLOR=#101010 WIDTH=1><IMG SRC=images/clear.gif HEIGHT=1 WIDTH=1 BORDER=0></TD>
<TD BGCOLOR=#101010><FONT COLOR=#9D9DA1><A HREF='index.php?go=ship_info&ship_id=75207' ONMOUSEOVER="window.status=''; return true">SCSY Ventura</A> (<A HREF='index.php?go=class_info&class_id=14' ONMOUSEOVER="window.status=''; return true">BTR</A>)</FONT></TD>
<TD BGCOLOR=#101010 WIDTH=1><IMG SRC=images/clear.gif HEIGHT=1 WIDTH=1 BORDER=0></TD>
<TD BGCOLOR=#101010><FONT COLOR=#9D9DA1>owned by Cpt. <A HREF='index.php?go=user_info&user_id=181' ONMOUSEOVER="window.status=''; return true">Andym88</A> of the <A HREF='index.php?go=faction_info&faction_id=464' ONMOUSEOVER="window.status=''; return true">Black Beach Alliance</A>
</FONT></TD>
<TD BGCOLOR=#101010 WIDTH=1><IMG SRC=images/clear.gif HEIGHT=1 WIDTH=1 BORDER=0></TD>
<TD BGCOLOR=#101010 ALIGN=RIGHT><FONT COLOR=#9D9DA1>Scan</FONT></TD>
</TR>
<TR>
<TD BGCOLOR=#151515 WIDTH=16><IMG SRC=images/faction/464_mini12.gif WIDTH=16 HEIGHT=16 BORDER=0></TD>
<TD BGCOLOR=#151515 WIDTH=1><IMG SRC=images/clear.gif HEIGHT=1 WIDTH=1 BORDER=0></TD>
<TD BGCOLOR=#151515><FONT COLOR=#9D9DA1><A HREF='index.php?go=ship_info&ship_id=68408' ONMOUSEOVER="window.status=''; return true">GAR Pulseing Heart</A> (<A HREF='index.php?go=class_info&class_id=14' ONMOUSEOVER="window.status=''; return true">BTR</A>)</FONT></TD>
<TD BGCOLOR=#151515 WIDTH=1><IMG SRC=images/clear.gif HEIGHT=1 WIDTH=1 BORDER=0></TD>
<TD BGCOLOR=#151515><FONT COLOR=#9D9DA1>owned by Cpt. <A HREF='index.php?go=user_info&user_id=57070' ONMOUSEOVER="window.status=''; return true">Remus Cross</A> of the <A HREF='index.php?go=faction_info&faction_id=464' ONMOUSEOVER="window.status=''; return true">Black Beach Alliance</A>
</FONT></TD>
<TD BGCOLOR=#151515 WIDTH=1><IMG SRC=images/clear.gif HEIGHT=1 WIDTH=1 BORDER=0></TD>
<TD BGCOLOR=#151515 ALIGN=RIGHT><FONT COLOR=#9D9DA1>Scan</FONT></TD>
</TR>
JS script (like one users can install from GreaseMonkey or similar) --> PHP file (on my own 'clan website') --> MySQL Database --> PHP display page for viewing the organized data.
Thank you if you can help me with this.