PDA

View Full Version : Getting asp output in a php string


imatrox05
08-19-2006, 08:08 AM
hi,

I'm looking for a solution to the following issue.

I access users info from out database in the server.
a. i access the report page from "http://192.168.1.118/db/user_report.asp"
b. I select a user from the list and press submit.
C. the result is displayed in another page

Now the url that is passed is like this

http://192.168.1.110/db/user_report_view.asp?cboUser=1724

Now there are around 45 users and currently i am getting statistics(eg total work done) by manually checking one employee at a time

Now...This is what i am trying to do

1. have all user id's in an array
2. Pass this url "http://192.168.1.110/db/user_report_view.asp?cboUser=" & array value
3. Get the resulting html output as a string
4. Parse my required data later from results

Now is this possible or should i look into some other solution