not really sure what you are trying to say but anyway,
with <form method='get'> the input data by users will be shown in the url when the form is submitted. with <form method='post'>, no input data will be shown in the url.
with GET, you get input values by using $GET
with POST, you get input values by using $POST