Is PHP solution for web scripts? [message #169987] |
Sun, 03 October 2010 07:01 |
Rishit
Messages: 1 Registered: October 2010
Karma: 0
|
Junior Member |
|
|
Once i click a button, i want my website to go and login to a
particular site [that doesnt hav API] and simulate some user actions
(eg. cricinfo.com and change the Fantasy Cricket team).
Which technology/language should i use for that?
{ Whats in my mind::
Afterall when a user interacts with website it is a series of HTTPReqs
and HTTPresponses. Cannot that be replaced by a web script (assuming
the website behaviour remains constant) }
|
|
|
Re: Is PHP solution for web scripts? [message #169988 is a reply to message #169987] |
Sun, 03 October 2010 10:07 |
bill
Messages: 310 Registered: October 2010
Karma: 0
|
Senior Member |
|
|
On 10/3/2010 3:01 AM, Rishit wrote:
> Once i click a button, i want my website to go and login to a
> particular site [that doesnt hav API] and simulate some user actions
> (eg. cricinfo.com and change the Fantasy Cricket team).
>
> Which technology/language should i use for that?
>
> { Whats in my mind::
> Afterall when a user interacts with website it is a series of HTTPReqs
> and HTTPresponses. Cannot that be replaced by a web script (assuming
> the website behaviour remains constant) }
check out:
http://us3.php.net/manual/en/book.curl.php
but, it will not be easy.
bill
|
|
|
Re: Is PHP solution for web scripts? [message #169990 is a reply to message #169987] |
Sun, 03 October 2010 12:04 |
Jerry Stuckle
Messages: 2598 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
On 10/3/2010 3:01 AM, Rishit wrote:
> Once i click a button, i want my website to go and login to a
> particular site [that doesnt hav API] and simulate some user actions
> (eg. cricinfo.com and change the Fantasy Cricket team).
>
> Which technology/language should i use for that?
>
> { Whats in my mind::
> Afterall when a user interacts with website it is a series of HTTPReqs
> and HTTPresponses. Cannot that be replaced by a web script (assuming
> the website behaviour remains constant) }
Almost any language can be used. What are you familiar with?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
|
|
|