Tagged Questions
CodeIgniter is an open-source PHP web development framework created by EllisLab Inc. The framework implements a modified version of the Model-View-Controller design pattern. Use this tag for questions about CodeIgniter classes, methods, functions, syntax and use.
0
votes
1answer
12 views
CodeIgniter pagination without tables
What i have right now is like 100 divs styled to be 4 in a row, want to add pagination to it, and i succeeded with this code:
public function func() {
...
0
votes
1answer
8 views
How to connect Codeigniter 2.1.x with sqlsrv
I have the following conf database
$db['default']['hostname'] = 'xx.xx.xx.xx,1433';
$db['default']['username'] = 'user';
$db['default']['password'] = 'pass';
$db['default']['database'] = 'dbname';
...
0
votes
1answer
12 views
CodeIgniter Flexi Auth Demo is Not working
I have just installed Flexi Auth Plugin on my Linux system by exactly following the Installation Guide
When I navigate to code http://localhost/codeigniter/ It is displaying the fancy demo page. ...
0
votes
0answers
12 views
Codeigniter function image_lib->crop() not working..!
I have tried to crop image by using the library function of codeigniter. But $this->image_lib->crop() function couldn't change the image.
Here is my code-
<?php
class Cropimg extends ...
1
vote
3answers
13 views
codeigniter insert from query how to optimized
I want to optimized my query on codeigniter.
this query works but it seems, its take time to insert the result to my database table.
$this->db->select('client_id');
...
0
votes
2answers
20 views
codeigniter upload PSD file
A am working on a project using codeigniter. Need to upload PSD file. Trying with this code..
$config['allowed_types'] = 'psd';
But the it show as result : The filetype you are attempting to upload ...
0
votes
2answers
20 views
Filter Search with Check box php
i have issue about when i search data all checkbox will checked. i want is when i search data . Then data showed must be checked.
example i search the word "vin". only the word have vin must ...
0
votes
1answer
23 views
How to not give direct acess to folder but to it's inside documents
environment
---------codeigniter framework
----------document sharing, links to download the files
mission
--------------files are allowed to download
--------------the folder which ...
0
votes
1answer
40 views
How can I perform an autocomplete function using jquery and CodeIgniter and mysql query?
I just need a little help here about creating an autocomplete textbox.
I found a solution with this but I can't integrate it with my code.
Here's my reference ...
0
votes
1answer
19 views
Live Search Filter with Checkbox PHP
I have issue about the live search with check box. My problem is when i search one the name list the check box is automatically check. only the showed data check.
example i search world "vin"
all ...
0
votes
0answers
11 views
How to load remote data using Kendo UI Grid?
Hello guys I just want to ask how can I load data from my mysql table using a Kendo Ui grid.
I am using CodeIgniter as well. But I don't know how to integrate it with my code. Here's my sample code.
...
0
votes
1answer
13 views
getProducts then getVariations for each product and display in table view with Codeigniter
Ok, I'm new to coding. I will try to present this question as clearly as possible.
I am looking to achieve the following table rows.
<table>
<tr>Product 1 without ...
0
votes
1answer
22 views
PHP Codeigniter sharing session
I had problem with session sharing. Can session be shared across domain? I'm using PHP codeigniter framework for my project.
I had this case where I got 2 domain name register in server and I use 1 ...
0
votes
1answer
33 views
CodeIgniter Controller breaks when calling parent constructor
I have the following code in helloworld.php:
<?php
class Helloworld extends CI_Controller {
public function __construct()
{
parent::__construct();
}
public function index()
{
...
2
votes
2answers
40 views
Selected value in form_dropdown not appearing after submit
I am using form_dropdown to create a dropdown box. It works properly in that all of the values are listed properly and the desired category filtering is achieved when I submit a selected option. ...