Questions tagged as 'codeigniter'

1
answer

Automatically fill a text box with a database value

I have a form with 5 fields, and I need the location field to be populated with a database value corresponding to the Postal Code field that was previously filled in. I'm using the codeigniter framework. Follow my Form: <form rol...
asked by 27.07.2016 / 17:51
2
answers

Join repeats records? [closed]

I have tables in the database that relate. A (t.a) has four rows that relate to the other four rows of (t.b) The query is performed by means of a (user.id) that exists in both tables. Does the problem occur in the return of the query that rep...
asked by 27.06.2016 / 17:01
2
answers

Sort classification according to the database | PHP

I have the following structure: Ihave3typesofclassification,followingthecoherence:1.0.0,1.1.0,1.1.1,1.1.2-Ihavetodisplayinfrontofthetitles,eachcontentthatbelongstoitsclassification,beingasfollowsatthetimeofdisplayingonscreen:>1.Meuconteud...
asked by 10.10.2016 / 21:21
2
answers

CodeIgniter View

I'm not able to display data in View . Model bank class ModelBanco extends CI_Model { public $em; public $senha; public function __construct(){ parent::__construct(); } function get_user(){ $this-&g...
asked by 10.12.2015 / 18:00
1
answer

php does not recognize the file field

So I'm working on a support system where it has a form for the user to send the message where he selects the area, type the title the message and also one for sending files if necessary the problem is that PHP does not recognizes the <input...
asked by 01.04.2015 / 17:02
1
answer

Routes CodeIgniter

The default site route is " link " or " link " When I go to the sign-in page, for example, I would like to access " link " instead of link " as the codeiginiter obliges ... Can you change that? .htacess <IfModule mod_rewrite.c&g...
asked by 01.07.2018 / 02:36
1
answer

How to use the between command in codeigniter to generate report

I need to generate the following report: The user selects the time interval (start date and end date) and the revenue report is generated showing the value of the added revenues. Here is the photo of the view that calls the function in the...
asked by 17.07.2018 / 23:47
1
answer

How to list data from one table, even the other (INNER JOIN) being empty?

In my page index , I have a input search for the user to search the data in the database, this input calls this method in Controller : public function pesquisar() { $this->load->model('Processo_mod...
asked by 07.05.2018 / 15:03
1
answer

Codeignite - Why does not my route work?

I have the following route in routes.php: $route['xxxxx/(:any)'] = 'Order/index/$1'; And the following index in the controller Order: public function index(){ switch( $this->uri->segment(2)){ case $this->step2:...
asked by 23.05.2018 / 17:46
1
answer

How to redirect the user to another page with CodeiIgniter?

I'm starting with CodeIgniter and I'm having a little trouble linking the pages. I'm doing it this way: <li class="nav-item mr-3"> <a class="nav-link page-scroll" href="<?php echo base_url('nomeApp/login');?>">Login<...
asked by 11.04.2018 / 03:19