Let me ask one more quick question: is there a way to designate a certain section of HTML code that you want to read?
Here's my situation, so you can understand it a bit better: my company has a large website and on each page we have a information arranged in basically 3 columns. The leftmost and rightmost columns are information columns that appear on all pages. The center, and largest, column is the main body which contains the primary information for that page. What I'd like to do is read the main body HTML only, strip the table tags out of it, and spit it back out as a temp file on the user's machine. The problem is that I can't think of any way to uniqely identify this main body from all the other HTML for the script to catch it.
I suppose I could go through and use the 'name=xxxx' tag on the paragraphs the main body is in, but I just wanted to check and see if there was an easier way to do that before I went off and started doing the keyboard work on that.