F
Fiaz Idris
I have used curl and perl script to extract data from sequence
of webpages before.
But, in the following case I couldn't find a way to do it.
So, if someone can guide me a better way or add any comments
on top of my own to do it would be appreciated.
HOW I EXPECT IT TO BE DONE
--------------------------
The webpage is the following:
http://www.chennaionline.com/msuniversity/submit.asp?code=BA
and I have to extract the Registration numbers from 2225683 to
2225867.
You might want to try out a single number for e.g. 2225683 to see
the results it returns.
I normally will group all the webpage source of each of the
registration
numbers in a single file using something like
$results = qx{curl -s
http://www.chennaionline.com/msuniversity/result.asp?RegistraitonNumber=$regno};
redirected to a file and then use regular expressions to extract the
Registration No., Name, College and the marks & results of each
subject
for each student.
WHAT I EXPECT FROM YOU
----------------------
I can't find a correct way to locate the URL which will return the
results
of each Registration Number as it seems to be using JavaScript or
something.
How can I do it in this case?
If there is a complete alternative to do it. Please guide me.
I have used the same technique in some other pages and it works like a
wonder.
of webpages before.
But, in the following case I couldn't find a way to do it.
So, if someone can guide me a better way or add any comments
on top of my own to do it would be appreciated.
HOW I EXPECT IT TO BE DONE
--------------------------
The webpage is the following:
http://www.chennaionline.com/msuniversity/submit.asp?code=BA
and I have to extract the Registration numbers from 2225683 to
2225867.
You might want to try out a single number for e.g. 2225683 to see
the results it returns.
I normally will group all the webpage source of each of the
registration
numbers in a single file using something like
$results = qx{curl -s
http://www.chennaionline.com/msuniversity/result.asp?RegistraitonNumber=$regno};
redirected to a file and then use regular expressions to extract the
Registration No., Name, College and the marks & results of each
subject
for each student.
WHAT I EXPECT FROM YOU
----------------------
I can't find a correct way to locate the URL which will return the
results
of each Registration Number as it seems to be using JavaScript or
something.
How can I do it in this case?
If there is a complete alternative to do it. Please guide me.
I have used the same technique in some other pages and it works like a
wonder.