-3
Could someone tell me a good tutorial, or a way to make a search system with codeigniter? I thank you already.
-3
Could someone tell me a good tutorial, or a way to make a search system with codeigniter? I thank you already.
2
It’s quite simple
$busca = $this->input->post('busca');
$query_busca = $this->db->query("SELECT * FROM tabela WHERE coluna LIKE '%".$busca."%' ")->result();
$data=[
"resultados" => $query_busca,
ias
];
$data_content = array(
'content' => $this->load->view('pasta/pagina', $data, true)
);
}
}
Browser other questions tagged codeigniter quest
You are not signed in. Login or sign up in order to post.
thanks for the opinion, I’m new here, thank you very much, but this part was concluded, thank you.
– Aminadabe dos Santos da Silva