Hey all.
I'm trying to write PHP scripts to automate a manual task of logging into a website and submitting forms.
I'm able to get to the screens I need but when I "submit" the data to the page, I'm not getting any data in return and the data is not being posted to the sites DB. The site runs ASP and i believe the roadblock is the use of ActiveX by the site.
Here is the scenario.
If I'm in a non-IE browser, the site doesn't work, it displays a message about needing to install ActiveX.
While running from a PHP script, I'm able to fetch the screens that simply display HTML elements.
I have the program name (this program is used to save data to a D😎 and form variables that are submitted to that program. The method used to call this program is GET. When I manually construct the URL and paste it into the URL of an IE browser, the data is sent/saved to the system DB.
If I use that exact same query string via a script, I get nothing in response and the data is not sent/saved to the system.
For the sake of testing, I ran some scripts against imdb.com and am able to call/parse/recall pages fine.
My questions is this. Is there any type of option that allows the bypass of ActiveX? Or a way to send it what it needs to execute properly?
I've looked at http://us2.php.net/curl_setopt but didn't see anything relating to ActiveX. I also did a search on this site for ActiveX but with all the threads (and vague names) it's difficult to find anything pertaining to my situation.
Any help would be greatly appreciated.
...