i do have this code:
<FORM action='test_b.php?SID=id&name=nom' method='POST'>
<INPUT TYPE="TEXT" name=ID align=left size=3 maxlength=3>
<INPUT TYPE="TEXT" name=nom align=left size=20 maxlength=30>
</FORM>
the problem is that i want to send the values of the form, but when i call the test_b.php and I try to send the id that i got from the form it doesnt get the value form the id input field, insted the variable SID if filled with an 'id' value.
what i want to be show is the value that i got from the field (ex. id=456) so the variable $SID will be working with 456 not with the value 'id'.
does anyone can helpme with this.. im really new with all this php thing so im not shure how to send the parameters to a script.
thanks.