Can someone help me on how can I send information to a website using MSINET (I think, lol). Like how can I send Username and Password to a clan scripts based site and log someone in.
Thanks.
I'll briefly show you how to use the GET method. Plus, I'll give you step by step instructions!
1. Figure out the field names
- View source on the page with the form you want to send. Look for all the <input name="xxx" /> fields, and write down the xxx
2. Figure out the script
- Find <form action="xxx" /> and write down the xxx
3. Send the query from your program
-Tell msinet to fetch http://server.com/script?field1=value1&field2=value2...
I'll try to make that work. Thanks for advice :)
[edit] 3 hours later: I figured it out, thanks so much :)
So wait lemmie see if i understand this,
what your saying is just copy down the
<input name="something">
and the form action
<form action="Something2" method="post">
??
is that right?
The you just do this?
http://server.com/script?something=value1
??
is that correct?
EDIT:
ok understood so its like
www.someserver.com/(<form action goes here>)/(input name)=(input value)
would be correct correct?
No.
http://server.com/Something2?something=value1
So i have a question
im trying ot make an auto logginer(bad english) with the following values:
<form action="login.php" method="post">
<input type="hidden" name="username">
<input type="hidden" name="pword">
<font color="black">Username:</font>
<input class="login_input" type="text" name="usrname" value="">
<font color="black">Email:</font></td>
<input class="login_input" type="text" name="uemail" value="">
<font color="black">Password:</font>
<input class="login_input" type="password" name="psword">
<input class="login_input" type="submit" value="Login" style="width: 50px;">
<input type="hidden" name="hash" value="dd00b3ec7d7625b028fb9ac600c3e37b">
its from www.kings-of-chaos.com minus the - because it was censored for some reason
im stuck
im not sure what to do.
you said something about a "GET" method?
does the method have to be "GET"?
Quote from: AC_Drkan on September 18, 2004, 09:43 PM
you said something about a "GET" method?
does the method have to be "GET"?
<form action="login.php" method="post">
That form uses post, not get. The variables are transferred differently with post. You may have to use post when you send it in if the php script isn't written to accept both options.
Quote from: AC_Drkan on September 18, 2004, 09:43 PM
its from www.kings-of-chaos.com minus the - because it was censored for some reason
I think it's possible to get some kind of reward for referring people to the site. We block such things here.
Quote from: Adron on September 19, 2004, 04:48 AM
Quote from: AC_Drkan on September 18, 2004, 09:43 PM
you said something about a "GET" method?
does the method have to be "GET"?
<form action="login.php" method="post">
That form uses post, not get. The variables are transferred differently with post. You may have to use post when you send it in if the php script isn't written to accept both options.
Quote from: AC_Drkan on September 18, 2004, 09:43 PM
its from www.kings-of-chaos.com minus the - because it was censored for some reason
I think it's possible to get some kind of reward for referring people to the site. We block such things here.
Sorry, i just get tired of logging into the site so i was gonna write a program to do it for me.
Yes there is a reward, you gte 1 soldier for every 1 person that clicks on your link.
but it has to be a human because if you tried anything else like a program that clicks the link it wouldn't work becuase you need to read a number off a very confusing image.
Topic Droped