HI,
first of all this is probably not php related
its just that im doing php too so probably some one would asnwer me on this html issue.
i will start with some html code
in this way, i could explain better i think
<form>
<input type=text name=name....>
<input type=submit value=A >
</form>
<form>
<input type=text name=age....>
<input type=submit value=B >
</form>
so what i have here is a couple of
1 edit box and 1 submit a button
so if i have click button A only name is submitted
and age is submitted when B is pressed.
the question is
i want to have another button in that html page where i would be able to submit everything contained the 2 forms
i tried to open another <form> before the first <form>
and enclose </form> after the second form
but it doesnt work .
so is there a way to do it?
thankss