Well, rgviza is saying, instead of having id in the action, pass the value of id in a hidden field. Access id value as $_POST instead of $_GET.
ie.,
instead of <form method="post" action="test.php?id=1">
do,
<form method="post" action="test.php">
<input type="hidden" name="id" value="1">
:)