in reply to Re^4: web search for certain data
in thread web search for certain data

So, is your problem that you have code which does not download the complete HTML?

If your problem is something else, you should maybe state that, and accompagny it with the relevant code. And maybe stop talking about how your existing program that you keep hidden does not work.

Replies are listed 'Best First'.
Re^6: web search for certain data
by pydi (Initiate) on Nov 23, 2011 at 20:34 UTC
    As i was telling i didnt have a worthy piece of code yet, but this is what i wrote so far, and when i run this, Mytempoutput file does not have all different meta content from the site.
    use LWP::Simple; use HTML::Parse; #Parsing the http file for the required fields $url = 'http://content.karger.com/ProdukteDB/produkte.asp?Aktion=ShowA +bstract&ArtikelNr=6735&Ausgabe=224691&ProduktNr=223832'; $url =~ s/&/=/g ; my @url_mod = split('=', $url); #checking for url and increasing article no. if ($url_mod[5] = 224691) { open(Mytempoutput, ">tempoutput.txt"); print Mytempoutput (get $url); $abs_str=""; $aa[5]= $aa[5]+1; print $aa[5]; }

      So, do you like playing 20 Questions?

      As my next question, I choose: "What parts of the page(s) are missing?"

        I am so sorry, i never meant to beat the bush around. Its just that this thing is gettin on my nerve. Well the ans for your last question is i get <META NAME="TITLE" CONTENT="Karger Publishers" /> when i should get <META NAME="TITLE" CONTENT="Effects of Body Position on the Carbon Monoxide Diffusing Capacity in Patients with Chronic Heart Failure: Relation to Hemodynamic Changes" /> Thats all is my problem