Questions tagged as 'codeigniter'

1
answer

Avoid registering duplicates in database with Codeigniter

How about, I tell you, I have a form and register everything well. What I need now is that once a code has been registered, it will no longer be possible to register it again. This is the form: <?php echo form_open("PaquetesController/ad...
asked by 07.04.2016 / 07:43
1
answer

Filling in a text input when changing a selection option

I have a question about how to fill in a text input when I change the option in a select, I do this because I want that when I select the patient's name I fill in an input with his phone number, I'm working with codeiniter, bootstrap modals and...
asked by 28.12.2018 / 01:58
1
answer

Compare two dates with YYYY-mm-dd format in javascript

I'm in trouble with a little comparison of dates, I need to compare two dates in the format "2018-10-05" to be able to call a function or do calculations, I was reading and I'm really complicating my life, someone could give me Help? I read them...
asked by 11.10.2018 / 23:36
0
answers

Real-time search engine

Hi, I'm doing a search in real time in codeigniter, jquery, json and mysql. between the controller and the model I have communication, it brings me the data, but in object. I think the problem is in sending the data to the array in the js, some...
asked by 31.10.2018 / 04:50
0
answers

Web App Azure (trial version) and codeigniter project

Well, it's my first time using Azure as a host for a codeigniter project, because I decided to mount it on this platform because: 1. I need to connect it to a database in SQLServer (free of charge) for a quick presentation. 2. I do not know at t...
asked by 12.09.2018 / 07:13
0
answers

How can I upload files to google drive from codeigniter using the google API?

I am creating a web application to register students with codeigniter and I want to make the photos that are uploaded to the website stored in Google Drive and at the same time display them on the website. I have this code created in the control...
asked by 18.09.2018 / 18:43
1
answer

Obtain 5 last records in BD with CodeIgniter

I need to get the last 5 records of a table sorted by their ID, I want to know if my query is ok: public function getLastProductos(){ $this->db->select("p.*, c.nombre as categoria"); $this->db->from("productos p"); $thi...
asked by 28.08.2018 / 06:08
2
answers

Problems showing related data in Codeigniter

It turns out that I have a problem I want to show the name of tables related to inner join in Codeigniter but it does not let me not know what I'm doing wrong. Controller public function consulta() { $asociados = array("tablaAsoci...
asked by 03.08.2018 / 05:21
2
answers

I can not connect my database in my Hosting

This is my connection: Using CodeIgniter $db['mysql'] = array( 'dsn' => 'mysql:host=mysql.hostinger.co;dbname=u201535648_regis', 'hostname' => 'mysql.hostinger.co', 'username' => 'u201535648_germa', 'password' => 'password'...
asked by 23.07.2018 / 22:47
0
answers

Codeigniter Routes

I have this $route['categoria/(:any)'] = 'site/categorias/$1'; $route['subcategoria/(:any)'] = 'site/subcategorias/$1'; Can I change them to this? $route['(:any)'] = 'site/categorias/$1'; $route['(:any)'] = 'site/subcategorias/$1'; I w...
asked by 23.07.2018 / 20:24