is there any one who knows how to curl some content with only taking special tables for example i want to curl google so i only need searches. i need to curl only starts from div id= res and the last line will be /NOBR
Not sure I get what you're saying.. do you want to use the information in <div id="res">blah</div> to perform a search? Please elaborate a bit more .
Just also make sure you don't get in trouble ..Google may not like it when you start hitting them with curl queries. They have a lot of API's so you can query there services..take a look at http://code.google.com/apis/gdata/
If you've got access to a Linux command line then think about using 'wget' - this will capture a whole page for you and then you can use grep, sed, awk to extract the exact segment of code you're looking for.
Edynas, are you sure it is still possible to use google api for queries? Have a look here http://code.google.com/apis/soapsearch/reference.html I believe curl / wget or other tools like those are the way to go. Bye