<div id="go">
<form target="_blank" 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>
Basically, your second one <form/>overrides the first <form/>elements, so it loses data when publishing.
Oh, by the way, PHP print();will not output your array data (at least I think so). You should use print_r();or instead var_dump();.
source
share