-delete pls-

Just starting out? Need help? Post your questions and find answers here.
LifeSux
New User
New User
Posts: 2
Joined: Sun Oct 05, 2008 12:39 pm

-delete pls-

Post by LifeSux »

-removed-
Last edited by LifeSux on Sun Oct 05, 2008 2:41 pm, edited 1 time in total.
User avatar
pdwyer
Addict
Addict
Posts: 2813
Joined: Tue May 08, 2007 1:27 pm
Location: Chiba, Japan

Re: HTML Problems....

Post by pdwyer »

LifeSux wrote:I'm even unsure about which one I should use. POST or GET.... 
Hint, the souce code of your html page looks like this.

Code: Select all

<form action="TEST" method="post" id="Login">
        <fieldset>
            <label for="Login_email">E-Mail</label><br/>
            <input type="text" value="" id="Login_email" name="email" class="fieldText" /><br/>
            <label for="Login_password">Passwort</label><br/>
            <input type="password" value="" id="Login_password" name="password" /><br/>
            <input type="submit" value="Einloggen" name="login"/>
        </fieldset>
    </form>
method="post"

In your case, "Post".

I don't know an OS independant easy way of doing this, TCP and play with the HTML headers as text. This can get challenging though is web sites use session cookies etc
Paul Dwyer

“In nature, it’s not the strongest nor the most intelligent who survives. It’s the most adaptable to change” - Charles Darwin
“If you can't explain it to a six-year old you really don't understand it yourself.” - Albert Einstein
Post Reply