Questions tagged as 'codeigniter'

1
answer

Equal Employee Return

I have the following code $sql = " SELECT c.*, cl.razaosocial, cl.idCliente FROM chamada as c, cliente as cl WHERE c.idCliente = cl.idClien...
asked by 10.06.2015 / 01:10
1
answer

InnerJoin no CodeIgniter

I'm working on a code and need to make an association, where I have to count the amount of voting in a video. The problem is that there are 2 tables of videos and votes . In videos is the videos, and there is the id of the video and...
asked by 16.09.2014 / 22:10
1
answer

Change session expiration time dynamically - Code Igniter 3

How do I set a config.php configuration item before it was loaded? I need to change the $ config ['sess_expiration'] item, according to the user. I tried the following: User.php public function logar() { $login = addslas...
asked by 13.12.2018 / 20:36
3
answers

Treat return with error in codeigniter

A call to the delete method is returning me the following error.    Error Number:            ERROR: update or delete on table "matricula" violates foreign key constraint "matricula_matricula_cobranca_fk" on table "movement_cobranca" DETAIL:...
asked by 13.12.2018 / 18:07
1
answer

Insert records cart codeigniter

I have the following PHP if($this->input->post('stock_unity_push')=='0'){ $stock_unity_push = 0; } else { $stock_unity_push = str_replace(".", "", str_replace("R$ ", "", $this->input->post('stock_unity_push'))); $stock_...
asked by 11.12.2018 / 20:22
1
answer

Pick up the start day and the end day of the specified week

Good afternoon, I'm returning from the database the number of the week in the year. ["data_hora"]=> string(16) "19/11/2018 15:26" ["num_semana"]=> string(2) "47" Where in week is the week number of the year that the date 19/11/2018 is...
asked by 21.11.2018 / 17:02
2
answers

How to create dependency validation between fields in CodeIgniter?

In CodeIgniter there is the possibility of creating validation rules ( rules ) for each form field, but what I need is a validation between two fields. I explain: The form has a field called url which is only required if the correspond...
asked by 10.02.2014 / 18:22
1
answer

Foreach com table

I'm creating a website that aims to show the games that are happening in the world in real time. I'm trying to make a for the table lines to be created "alone" according to the amount of games I will have at the moment I come from the API, I'm u...
asked by 03.12.2018 / 12:25
2
answers

Check if a user registered at the bank has cpf already registered

Hello, I have to check in the database if a logged in user already has cpf registered and return whether it is false or not. I use the codeigniter in the application. I'll send the codes. CONTROLLER: public function check_cpf_doctor() { $c...
asked by 01.12.2018 / 23:28
1
answer

Browse PHP Array

I have the following call to a model ' $dados = $this->atleta_model->get_atividade_semanal($__cod); But it is returning an object that I can not iterate, I have to go through it to put its values in a table. Return of the model...
asked by 09.11.2018 / 19:35