I'm using CodeIgniter in a project but I'm having a hard time sending information, I have a view that contains a form with the registration fields:
<?php
echo form_open_multipart('Contro...
I'm developing a class to support multiple uploads using the Codeigniter framework and I've decided to parse my code using some online tools.
One of these was code climate ; I noticed that when checking the reports for code improvement it...
I see several programmers call all views to build a page in the example controller:
$this->load->view('head',$var);
$this->load->view('home');
$this->load->view('script');
$this->load->view('fim_html');
<html>...
I am trying to find a way to replace the $_POST['INPUT'] by $this->input->post('INPUT') of codeigniter , in my editor phpstorm , using replace with the regex option enabled. >
So what's in quotation marks that is the na...
I have a form element with a select and a submit (filter). The data is filtered, the page is reloaded and the data is presented in a table. To see all the data, it goes through more than one page in the table (pagination). However...
Is it possible to validate an input of a form using the GET method? When I define the form's method is POST the form_validation works but when I define it's GET the validation returns me false. The code is basically this:
HTML
<form me...
I'm trying to use the CodeIgnoter framework.
but I can not get past this:
http://localhost:8087/CodeIgniter/index.php/usuario/home
for this:
http://localhost:8087/CodeIgniter/usuario/home
It always appears:
The requested URL /CodeIgn...
Hello, I am trying to make an example in codeIgniter where I want to display data from the database in html forms.
This is my query:
$id_entidade = $this->session->userdata('id_entidade');
$query = $this->db->query("SELE...