How do i set the variable that the $_GET function will be able to use, w/o submitting a form with action = GET?
$_GET
action = GET
You can use GET variables in the action parameter of your form element. Example:
action
form
...
This will give you foo as a GET variable and quu as a POST variable.
foo
quu