I am creating a button in php and want to call a php with parameter when clicked:
echo '<form method="get" action="./ash.php?q=Y"    >';
echo '<button type="submit"    >QUERY</button>';
echo '</form>';
When I click on the button, ash.php gets indeed called, but the q parameter has been 'forgotten' in the process. How can that be?
 
    