Questions tagged as 'codeigniter'

1
answer

Working with BLOB field in ORACLE using Codeigniter [closed]

I have a system where I will store certain files in a BLOB-type column in my ORACLE database, but I did not find anything about it in Codeigniter's own documentation on how to do this, how can I manipulate these files, where I need to feed this...
asked by 24.10.2018 / 15:26
1
answer

MVC CodeIgniter

I have a question regarding the passing of parameters between MVC. I'm developing email confirmation on a project. After clicking on the link to confirm sent by email, the system picks up by GET, the encrypted password and "I want to change t...
asked by 31.08.2018 / 21:20
1
answer

Email Body Image - Code Igniter

I'm having trouble mating an image in the body of the E-mail using the default code igniter library. I've done it like this: $cid = $this->email->attach('media/teste.jpg','inline'); $dados['cid']= $cid; $emailbody = $this->load>...
asked by 08.08.2018 / 21:12
2
answers

Only one line as true, MYSQL - Codeigniter

Hello Since I have the following table: DROP TABLE IF EXISTS 'tb_conta'; CREATE TABLE IF NOT EXISTS 'tb_conta' ( 'id' INT(11) NOT NULL AUTO_INCREMENT, 'nome' VARCHAR(255) NOT NULL, 'tipo' TINYINT(1) NOT NULL DEFAULT 1,...
asked by 21.08.2018 / 21:47
1
answer

Limit the number of rows in the second table?

Hello, good evening! I have two tables (Process and Movements). I need to generate a report with the Process data, along with the most recent progress. The query I wrote is returning me all the steps, causing the process data to be repeated....
asked by 28.06.2018 / 23:06
1
answer

Wrong date format

I have a somewhat annoying problem and I have no idea where to go to solve or how to solve, it comes down to the following: The date on a system I'm modifying does not show in the view correctly. It looks like this: 0404/0606/2018181818 9:56...
asked by 04.06.2018 / 15:03
1
answer

Doubts about url ajax

I'm developing a simple crud with ajax and jquery and I came across the following question ... $('#btnDelete').unbid().click(function(){ $.ajax({ type: 'ajax', method: 'post', async: false,...
asked by 01.06.2018 / 00:29
1
answer

How to make a datatable data be clickable by calling another view?

Good afternoon, guys. Here is the code for my view, which is working correctly. It happens that I would like to make the process number (2nd <td> ), be clickable by calling another view. Is it possible? View Code: <head>...
asked by 23.05.2018 / 21:42
1
answer

How to load an Error 404 page for the site and another for HTACCES application?

.htacess site # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /in...
asked by 13.05.2018 / 00:54
1
answer

Codeigniter - Retrieve categories from the bank

I have a table '' category '' in the database and it has the column 'id' and 'title', I am retrieving the same in several dropdown menu's, however it loads all categories of the database but I would like to load each category on its respective m...
asked by 01.05.2018 / 20:37