Posts by Aminadabe dos Santos da Silva • 117 points
15 posts
-
0
votes0
answers55
viewsQ: Send request via ajax php
I would like to know how I make a request via ajax in real time, basically it is to popular a select of cities, more when I have run the code his modal simply does not open, follow the code to…
-
3
votes4
answers1739
viewsQ: Expire php link
I wonder how I do to expire a link after a use. We have a password recovery system that sends an email to recovery that is working perfectly. In this case, if the link is not opened in 30 minutes,…
-
1
votes1
answer763
viewsA: Persist search parameter in codeigniter paging
Hello, trying here I managed to solve the problem, here follows a code that can make a pagination with search and still keep the data, I thought I should use the session but I found more feasible to…
-
1
votes1
answer763
viewsQ: Persist search parameter in codeigniter paging
Hello, I’m making a search system for a store with codeigniter, paging is working, but when you change the page you lose the search parameter, I would like to know how to persist the search so that…
-
0
votes1
answer776
viewsA: Pagination in codeigniter 3
$config ['use_page_numbers'] = TRUE; Put this in your code.
-
0
votes1
answer1385
viewsQ: Paging with the codeigniter
Could one of you help me find the error in this paging code with codeigniter. it prints the links in the right way, but it shows more items than it should per page, and when I change the page it…
-
1
votes1
answer50
viewsA: how to connect to couchdb in codeigniter?
I’m finishing here, thank you, after a lot of effort we got connection, is just load the library in autoload. and start using the methods. //no autoload.php $autoload['libraries'] =…
-
0
votes1
answer50
viewsQ: how to connect to couchdb in codeigniter?
someone knows how to connect to Couchdb using codeigniter? We have tried many tutorials, added the necessary libraries, but we did not succeed. Please help us.
-
0
votes0
answers16
viewsQ: Couchdb and codeigniter
I have a little problem here, I have a job to do and I need to integrate the codeigniter with couchdb, I found a library on github, I followed the installation tutorial and everything, but still it…
-
3
votes1
answer29
viewsQ: remove php display item
I have a problem here, I know it can be simple, but I still can not solve alone. I have a slide spinning in a loop of PHP, in this slide there are "entities" that when the expiration day comes they…
-
2
votes1
answer928
viewsA: Search system with codeigniter
It’s quite simple $busca = $this->input->post('busca'); $query_busca = $this->db->query("SELECT * FROM tabela WHERE coluna LIKE '%".$busca."%' ")->result(); $data=[ "resultados" =>…
-
-3
votes1
answer928
viewsQ: Search system with codeigniter
Could someone tell me a good tutorial, or a way to make a search system with codeigniter? I thank you already.
-
0
votes2
answers58
viewsA: E-mail with tamplate codeigniter
In reality it is not difficult, trying here I got $message = $this->load->view('pasta/pagina', $data, true); $this->email->message($message); $this->email->send(); just pass the…
codeigniteranswered Aminadabe dos Santos da Silva 117 -
0
votes2
answers58
viewsQ: E-mail with tamplate codeigniter
Hello community people, I’m an intern at a programming company, and now I’m trying to send an email with tamplate using codeigniter, you could help me, already managed to send the email, the problem…
codeigniterasked Aminadabe dos Santos da Silva 117 -
1
votes1
answer1191
viewsQ: Get radio button value via jQuery and set in PHP
I have to capture an event of click in a radio button and pass its value in a PHP variable to be able to do a value calculation, I was not very successful, follow my code. function Tipo_Frete() {…