views:

47

answers:

3

Currently, I have a script that calls Firefox and runs a macro, but this is very buggy and rarely works the way I want it to.

+2  A: 

I do not know of any PHP modules that do this, but it sounds like the Perl module WWW::Mechanize is particularily suited for this task.

Powertieke
Thank you so much! You're awesome! This is exactly what I was looking for!
Glad I could help :)
Powertieke
+1  A: 

Depending on how you log into the website wget might be your friend.

Matt Taylor
Sorry, I'm also making changes to an account -- not just grabbing data -- so wget wouldn't work here. Thanks though.
+2  A: 

you can use curl

helle
It would be a little complicated for what I'm doing, but possibly if WWW::Mechanize doesn't end up working out. Thanks.