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
For the form, use:
and for getting the value, use the get method as follows:
$value = $_GET['name_to_send_using_get'];