here is my code:
<form action="file.html?myvar=xxx" method="GET" name="myform" >
<INPUT TYPE="text" name="myinput" value="yyy">
<input type="submit" name="submitForm" value = "submit">
</form>
my problem is i'm using netscape so i need the method get to get the variables, and the result i'm getting is overwriting the variable i'm sending with my form action
so i'm getting as a result after the form submit :
file.html?myinput=yyy
and myvar=xxx is lost
thanks for any help
<form action="file.html?myvar=xxx" method="GET" name="myform" >
<INPUT TYPE="text" name="myinput" value="yyy">
<input type="submit" name="submitForm" value = "submit">
</form>
my problem is i'm using netscape so i need the method get to get the variables, and the result i'm getting is overwriting the variable i'm sending with my form action
so i'm getting as a result after the form submit :
file.html?myinput=yyy
and myvar=xxx is lost
thanks for any help