Questions tagged as 'codeigniter'

2
answers

Smart Session with CodeIgniter

I have an application developed with CodeIgniter, PHP and MySQL. The user session has always been treated according to the CodeIgniter standard, but now I need the session to be more restrictive, working in a similar way to an internet banking s...
asked by 24.10.2014 / 15:12
1
answer

Does CodeIgniter work on Linux?

I'm starting with the CodeIgniter Framework and wanted to hear from you whether it works on normal linux hosting or will I have to hire a dedicated one?     
asked by 12.07.2014 / 22:16
3
answers

How do I load a controller into another?

Well, my question is how do I load a controller / method into another controller, in CodeIgniter 2.2.2 <?php if(! defined('BASEPATH')) exit('No direct script access allowed'); class Inicio extends CI_Controller { public function index()...
asked by 25.03.2015 / 01:08
2
answers

Converting JSON to HTML via AJAX in CodeIgniter

How do I use the JSON return in HTML? Here are the codes. Ajax function: $(document).ready(function(){ $.ajax({ url:"<?=base_url('pedido/listar');?>", dataType: "html", success: function(data) { $('#p...
asked by 28.12.2018 / 16:40
1
answer

Error in passing value to View in codeigniter

In a simple application. A value is passed to view. However codeigniter reports an error: PHP Code:      class User extends CI_Controller { public function __construct(){ parent::__construct(); $this->...
asked by 09.10.2017 / 22:44
1
answer

How to redirect to another view after sending email?

In the code below, after sending the form via email, the same view is loaded. Instead, I need to be directed to another view . (thanks for example) Below is the code: public function duvidas_e_contatos() { $this->load->helper...
asked by 22.08.2017 / 20:20
1
answer

How to "Zip" files or directories in codeigniter

I've seen it in the documentation, but they talk very shallowly, and understanding does not look good. So can anyone explain to me in a more practical way how I can zip files in codeigniter? Thank you. Link to documentation: link I did n...
asked by 02.06.2017 / 09:29
1
answer

error foreach codeigniter

I have the following problem, I make a select in the database and display the images on the page, it is a classified portal where the person makes an ad and can upload up to 10 images . So far so good, I get the ad and it is displayed on th...
asked by 08.11.2016 / 19:27
2
answers

jQuery check field php database

I have the following button: <button type="submit" class="btn btn-info pull-right"><? echo $titulo; ?></button> This button sends a form action, with the data filled in. And I also have the following field: <input...
asked by 16.08.2016 / 14:50
1
answer

Query to return only the records of the last 24h (Codeigniter)

Hello I need to do a query that returns me the values of only the last 24h I have the following query: $date = date("Y-m-d H:i:s"); $this->db->select('*'); $this->db->from('inscricoes');...
asked by 03.08.2016 / 13:24