- bootstrap with typeahead
- jquery
This will use bootstrap with typeahead to create an autocomplete search.
<?php | |
public function add() { | |
if ($this->request->is('post')) { | |
$this->Profile->create(); | |
// debug($this->request->data); | |
// exit; | |
if ($this->Profile->save($this->request->data) && $this->Profile->Avatar->save($this->request->data)) { | |
$this->Session->setFlash(__('The profile has been saved')); | |
$this->redirect(array('action' => 'index')); | |
} else { |