我在网页上有一个表格:
<?php echo form_open('/search/processing'); ?>
<input type="text" name="query" size="50" />
<input type="submit" name="1" value="1" /></br>
<input type="submit" name="2" value="2" /></br>
<input type="submit" name="3" value="3" /></br>
</form>
它进入这个控制器功能:
public function processing()
{
// redirects here based on user input and what submit button was pressed
}
我想知道是否可以摆脱此功能并根据用户输入的内容直接从表单重定向?