anjuna wrote:
spudge wrote:
I'm looking for anything other than the 20 canned responses. I'm letting it run despite any other theories right now because it's already been running for a few hours, and I'd like to finish and make SURE it's not just one spell first.
I can program it to do anything I want, sequences won't be a problem. Unfortunately I wasn't logging what responses go with which numbers, so I won't be able to use that kind of data without another run through all the spells.
PERFECT. I can sleep tonight hehe. I assume *for now* the finite 20 unless you come up with more. I tire early as Spring just starts here, so may fall asleep early, if you care to PM me "details" regarding the 20 (along the lines of what a layperson could do with URLs, let me know).
Unfortunately there's nothing you can do with just the URL. There's two methods generally used for a web browser to fetch a page. The GET method and the POST method.
GET means all the data needed to fetch the document are in the address. Ex:
http://www.website.com/index.phtml?user=spudge
this tells the page you are user "spudge"
POST means that the data needed to fetch the document are encoded somewhere else in the request that humans can't mess with. In fact to even mess with them you need a program like Fiddler (by Microsoft).
I used fiddler to gather the data being sent to the server, and then used Visual Basic to make a program that used a Web Browser control to manipulate this data and increment the "spell_id" by 1 each time the site was accessed.