Open-Source PHP Framework - Designed for rapid development of performance-oriented scalable applications

/mvc/elements/wikisearch

[return to app]
1
<?php
echo '<div id="wikisearch">';
if (!isset($withinExistingForm) || !$withinExistingForm) {
    echo $form->open();
}
echo $form->input(array('name' => 'wsearch', 'label' => ''))
   . ' ' . $form->submit(array('value' => 'Search'));
if (!isset($withinExistingForm) || !$withinExistingForm) {
   echo $form->close();
}
echo '</div>';