Spider and get tag information of one web page

  • Thread starter Thread starter discountonall
  • Start date Start date
D

discountonall

Hi all
i would like to know if anyone knows about a code sample.
Lets say for example
http://shopping.yahoo.com/search;_y...zZWFyY2g-?p=+friendship+roses+&did=&x=51&y=10

As you can see that there is a lot of items.
I need to be able to get the image link, navigate url, price,
description etc. of each item and then store them in a database.

I know that there is a way of searching in the html code and return
values (but don't know how)
And help would be appreciated.
Thank you,
 
As you can see that there is a lot of items.
I need to be able to get the image link, navigate url, price,
description etc. of each item and then store them in a database.

You'll need to manually parse the page.
 
You'll need to manually parse the page.

Thank you Spam Catcher for your reply
I have the full string of the page.
I would like to know what the syntext for example is to find all the
full string from <table class="item_table"
Until the next one and return it as a string
 
Thank you Spam Catcher for your reply
I have the full string of the page.
I would like to know what the syntext for example is to find all the
full string from <table class="item_table"
Until the next one and return it as a string

I would use regular expressions to parse your text string. Are you famliar
with regex?
 
Back
Top