I have read somewhere that it is possible to pass variables from form with using link (not submit button), can sb help me how to do that?
you mean somthing like this?
<a href="test.php?variable1=somthing&variable2=somthing2">test</a>
I know this solution I think rather about different thing (I don't want any query_string but thanks
You can use JavaScript in a link to submit the form, so there's no need for submit button.
Diego
this is what I was thinking about, could you be more specific (I'm not so heen on javascript)...(and php also..hehe) thx
If this is what you want
<a href="javascript:document.theForm.submit();">HYPERLINK TEXT</a>
OR
<a href="javascript:document.theForm.submit();"><img tag here></a>
excactly I understand that I don't have to declare this function: document.theForm.submit()????? thx