Posts by Jardel Dint • 59 points
10 posts
-
0
votes1
answer344
viewsQ: Insert multiple columns and tables into a variable in mysql
I am in a simple dilemma (I believe) I have 3 tables in question.. the Associated table and the Request table and the box. The associate fields are: id, ref_by, name .... The fields of the request…
-
0
votes2
answers922
viewsQ: Validate Password fields
I have a single page on HTML, using the bootstrap + templates in which it has a registration form and it has two password fields, one to type and one to validate (if it is equal). I tried to jQuery,…
-
0
votes1
answer262
viewsQ: Calling an Array from a Public Codeigniter View function
I have this public service in Controller: public function faturar() { $this->load->library('form_validation'); $this->data['custom_error'] = ''; if…
-
2
votes1
answer1705
viewsQ: Calling a function in Views in codeigniter
I have that function in the models: function sumContasReceber() { $this->db->select('lancamentos.*'); $this->db->from('lancamentos'); $somaCR = "SELECT SUM(valor) as SOMACR FROM…
-
1
votes0
answers132
viewsQ: Adding values of 1 Mysql Column with codeigniter
I need help fast. I am trying to create a function in Models, where only add the values of the 'value' column of a table. I’ve researched several questions here and I’ve asked them, but they’re not…
-
-1
votes1
answer50
viewsQ: I made a capture of fields of the comic and gives this error
After I put this code below .... $capturaValorTotal = $_POST['valor']; $capturaValorPagar = $_POST['valor-pagar']; $valorDevido = $capturaValorTotal - $capturaValorPagar; $inserindoBanco = "INSERT…
-
1
votes1
answer194
viewsQ: Selecting multiple fields from a table with a term in the query
I tried to follow some steps I found here in the bad forum did not work... I have this code here in the codeigniter model: // buscando clientes $this->db->like('nomeCliente',$termo);…
-
0
votes1
answer427
viewsQ: Take the data from a select and declare variable
all right? I am very new to programming and have a simple question that I did not find here on the forum. I have this code below the view (codeigniter): <div class="span6"> <label…
-
0
votes0
answers48
viewsQ: What’s wrong with that code?
all right? I am a beginner in PHP and I am "side" in a simple code, in which I have seen numerous answers here in the forum, and I did exactly as it is in the answers (until CTRL+C CTRL+V) and it…
-
1
votes1
answer189
viewsQ: My client record "almost" all fields
I’m having a very weird problem and I believe you can help me. I have a web system to control the company, where it has the customer registration, products and etc. The system is in php +…