Questions tagged as 'codeigniter'

1
answer

Session Codeigniter

I have this normal session: foreach ($nofeatured_prods as $k) { $_SESSION['itens'][$k->id] = $k; } How do I assign in the same way, however, in codeigniter?     
asked by 08.12.2016 / 18:05
1
answer

Run Xdebug on netbeans to debug Codeigniter

I'm trying to debug an app in codeigniter through xdebug on Netbeans. However when I run my app in debug mode, I can not get to my controllers or any breakpoints after the first line of codeigniter index.php. I am running codeigniter 3.0 on x...
asked by 08.07.2016 / 19:08
1
answer

Add value to the database

I use Codeigniter, and the situation is this: The product has a current stock, and I want to input more items from this stock ... how do I add the existing one with the new entries? Here is the code: CONTROLLER: public function entrada(){...
asked by 25.07.2016 / 21:45
1
answer

I can not do SELECT

Model: public function exibir_noticia() { $consulta = $this->db->query('SELECT * FROM Noticia_Site_Cairu'); return $consulta->result(); } Controller public function index() { $this->load->model('noticia_model');...
asked by 13.10.2016 / 17:11
2
answers

Keep client logged in http and https

I am finalizing my virtual store developed in codeigniter 3 and database mysql is working perfectly. Now I want to start configuring the digital certificate. My problem is this: when I go to the environment https soon on...
asked by 08.09.2015 / 14:33
1
answer

CI3 No Load the model on the umbler server

I'm doing a test on umbler services, but I'm having trouble loading the model. I am using ci3 and am loading the models as usual. $this->load->model('main_model'); More is giving an error An uncaught Exception was encountered Ty...
asked by 07.09.2015 / 16:45
2
answers

Check if data already exists in the bank with codeigniter

I am starting with codeigniter using the active record to make the conversation with the bank, and wanted to know how do I know if an email already exists in db, would it list all emails and create a foreache doing the verification? Is there a s...
asked by 19.12.2015 / 20:13
1
answer

Send E-mail - Wamp and CodeIginiter

I'm trying to send the email via localhost through codeiginiter. Inside my libraries folder, I created a folder "PHPMailer" to put the PHPMailer files. You are not sending the email, you are giving the following error: 2015-09-24 16:53:47 CLIE...
asked by 24.09.2015 / 19:16
2
answers

Calculate hours in PHP?

I'm developing an electronic dot in PHP and would like to know how to do the two-hour Cachulo, one of which is negative, for example: Day 1: -05: 00: 00 Hours day 2: 08:00:00 How would you do the two-hour bill to get the balance of hour...
asked by 07.07.2015 / 23:32
1
answer

Redirection in CodeIgniter

I'm developing a project using the framework codeigniter. In% of the rendering of the site, I would like to first direct to a folder called 'input', and clicking a link in this folder will then enter the 'site' folder, which in this case is...
asked by 03.08.2015 / 21:27