-3
我需要一些幫助來創建一個簡單的搜索表單與一個輸入框。它需要能夠將值發送到控制器中的URL像這樣:Cakephp如何創建一個簡單的搜索表單
http://mysite.co.uk/properties/results?search=northampton
我想用CakePHP的形式幫手,但你可以包括這並不涉及到一列中輸入數據庫?
我需要一些幫助來創建一個簡單的搜索表單與一個輸入框。它需要能夠將值發送到控制器中的URL像這樣:Cakephp如何創建一個簡單的搜索表單
http://mysite.co.uk/properties/results?search=northampton
我想用CakePHP的形式幫手,但你可以包括這並不涉及到一列中輸入數據庫?
從那以後發現這個問題的答案:
///in the view:///
<div class="container">
<a href='#'><div class="search-tab active_search_tab">Property Search</div></a>
<div class="col-md-12 purple search_box">
<?php
echo $this->Form->create('Properties', array('type' => 'get'));
echo $this->Form->input('search', array('between'=>'<label for="search" class="main_search">Search</label><br>','label'=>false));
echo $this->Form->button('Search', array('class'=>'btn btn-success'));
echo $this->Form->end
?>
</div>
</div>
//in the controller//
if(isset($this->params['url']['search'])){
echo 'search text has been found';
}
公允評論問:Burzum
當然可以。先嚐試一下可能是一個好主意? – burzum
是的,您可以包含與數據庫中的列無關的輸入。 –
您正在尋找https://github.com/CakeDC/search - 有一點谷歌搜索會顯示,順便說一下。 – mark