Skip to content

Instantly share code, notes, and snippets.

@nfreader
Created March 10, 2011 19:45
Show Gist options
  • Save nfreader/864780 to your computer and use it in GitHub Desktop.
Save nfreader/864780 to your computer and use it in GitHub Desktop.
<div class="Search"><?php
$Form = Gdn::Factory('Form');
$Form->InputPrefix = '';
echo
$Form->Open(array('action' => Url('/search'), 'method' => 'get')),
$Form->TextBox('Search'),
$Form->Button('Go', array('Name' => '')),
$Form->Close();
?></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment