I want to pass information from an HTML form to a PHP page. My problem is that the data from the form is not getting submitted. What am I doing wrong ?
HTML FORM
<div id="go">
<form method="get" action="client_authorized.php">
<fieldset>
<input type="text" name="query" class="input-text" />
<input type="submit" value="Secure Client Access" class="input-submit" />
</fieldset>
</form>
</div>
client_authorized.php
<?php
print $_GET['query'];
?>