Tagged Questions
0
votes
1answer
23 views
CodeIgniter: Instances of CI_Model
I was wondering if CI_Model is more like a database layer, or can i really use it like i would normally use a model.
To me it looks really ugly to do things like:
for($i = 0; $i < 3; $i++){
...
1
vote
2answers
49 views
Pass variables between functions in model
I have such function in model.
function news()
{
$data = array(
'title' => $this->input->post('title'),
'date' => $this->input->post('date'),
...
0
votes
1answer
31 views
Codeigniter controllers for subpages? (New to Codeigniter please help)
I am new to codeigniter so please excuse my stupidity.
I am building a client portal and I have my admin / client login setup I am currently working on the admin area first so I have my controller ...
-2
votes
1answer
48 views
Is it possible to add __get and __set to Codeigniter Model? [closed]
Instead of having a getter and a setter for each column I want to update from the Model I would like to use __get and __set in my Model but it doesnt work.
here's an example:
class Video extends ...
-2
votes
1answer
65 views
“Fatal error: Call to a member function select() on a non-object” in codeigniter [closed]
I am upgrading version of CI.
All changes are made like
in controller :
extends controller Replaced By " extends CI_controller " same for model.
Right now I got above mentioned problem.
I am going ...
0
votes
1answer
38 views
How to return value of 2 data in foreach which each data has 5 rows in model of codeigniter to view
I have a similar problem that the function only return the first loop data.
The result should be 2 loops and each loop has rows data.
For example, The first loop is A and has 5 rows data and second ...
-1
votes
2answers
32 views
Codeigniter getting result from model
i have a controller called main...
here i have this code.
$data['companies'] = $this->companies->getAllCompanies();
$this->load->view('main_view',$data);
i have loaded the model called ...
0
votes
1answer
54 views
codeigniter model query not sending json data correctly
I have a codeigniter model function which queries a database and sends the result back to the controller, encoded as json.
the entire function is shown below:
function get_skufamily_cube($q){
...
0
votes
0answers
40 views
Working with MY_Model
I'm still having an issue with relationships when working with the following model.
https://github.com/jamierumbelow/codeigniter-base-model
I'm trying to make the join so that the themes table and ...
0
votes
0answers
46 views
codeigniter query not working - response is null
I have the following function in my codeigniter Model:
function get_as_09($q){
$sql=("select length from
(SELECT
[length]
...
0
votes
0answers
56 views
Undefined property error in my Controller in CodeIgniter 2 [closed]
I am currently in the process of upgrading my custom news system to CodeIgniter 2.1.3.
Can someone explain why I am getting the following error when trying to visit the news section:
A PHP Error was ...
1
vote
2answers
47 views
object property to text
I am retrieving a integer from my database which should correspond to a text string when output.
$sql = ('SELECT drinking, smoking FROM users WHERE id = ?')
$q = $this->db->query($sql, ...
0
votes
2answers
192 views
insert data into database with codeigniter
Trying to insert a row into my database with CodeIgniter.
my database table is Customer_Orders and the fields are CustomerName and OrderLines. The variables are being submitted correctly.
My ...
1
vote
2answers
51 views
CodeIgniter: How to pass variables to a model while loading
In CI, I have a model...
<?php
class User_crud extends CI_Model {
var $base_url;
var $category;
var $brand;
var $filter;
var $limit;
var $page_number;
public function __construct($category, ...
0
votes
1answer
33 views
How do I keep models loosely coupled when querying a many-to-many table in CodeIgniter?
I'm using CodeIgniter and have three tables and a model for each:
User - table of users
Product - table of products
UserProduct - table showing which users have which products (two foreign key ...
0
votes
2answers
54 views
Codeigniter - Use the id from a query result in a model to query in a different function in the same model
I'm using codeigniter to code my site and I'm running into a roadblock. I know how to do this in regular, non "MVC", not OOP PHP, but am struggling on it in Codeigniter.
I have blog_model.php, which ...
0
votes
0answers
72 views
Code doesn't work in model but work in controller
I have been doing my CodeIgniter project smoothly until just now. I came across a weird problem
I have the following code.
//This part generate error
$this->load->model('Task_model');
...
2
votes
1answer
46 views
CodeIgniter CLI - passing multiple args to method
I'm testing out some models from a CodeIgniter project via CLI, the method in question has two arguments:
public function get_questions_from_block($block_name, $return_array = FALSE)
I have tried ...
0
votes
0answers
72 views
Codeigniter - loading of model creates an issue with instances
I'm using CodeIgniter and have created several classes (in my model folder):
Entity is an abstract class (used to represent anything that will be in a form and go into a database)
Login extends ...
2
votes
1answer
88 views
fat model and skinny controller design confusion between the controller method and model method
i'm newbie in MVC (using codeIgniter as my example) and i have read MVC fat model and skinny controller for like 3 times, what i got :
model does the hardwork while controller calls the model and ...
3
votes
2answers
82 views
model to fetch single result from db with jquery
I have a controller function which is called by jquery:
function get_sku_prices(){
$this->load->model('Sales_model');
if (isset($_GET['term'])){
$q = strtolower($_GET['term']);
...
0
votes
2answers
49 views
Codeigniter load model in controller - 500 erorr
This is my controller:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Order extends CI_Controller {
public function index($id=-1) {
...
0
votes
2answers
43 views
codeigniter models in controller is not loading
This is my controller:
class Orders extends CI_Controller {
public function index() {
//get model and db entries
$this->load->model('order_model', 'orders', TRUE);
}}
When i open the ...
0
votes
0answers
44 views
jamie rumbelow's codeignter my_model issue
I have put the my_model file in core folder. And created my model as
class User_model extends MY_Model
{
public $_table = 'users';
public $primary_key = 'user_id';
function ...
1
vote
4answers
69 views
How do i call the function I created in my Model on the view
I just created this function in the model to see who im following in my social network... how do i call it in the view??
function isfollowing($following){
$user_id = ...
0
votes
2answers
44 views
Error Number 1054 on CRUD application
i am getting this error anyone know what is could be the cause of this ? i think its something with the model but cant figure out.
Error Number: 1054
Unknown column 'id' in 'order clause'
...
0
votes
1answer
53 views
CodeIgniter loading from multiple controllers and models
HI everyone I only recently started Using CodeIgniter I have a simple question is it normal to use multiple models and controllers for the same view ? What I want to do is to have a controller and a ...
0
votes
2answers
60 views
codeigniter - if model mysql query fails, send flashdata back to the user
I have a model update function being called by my controller:
function update_customer_records( $id, $data )
{
$this->db->where( 'id', $id );
$this->db->update( 'customers', $data ...
0
votes
3answers
108 views
codeigniter pass variable from controller to model
simple issue I presume.
My controller is getting the if to display from the url using $this->uri->segment(3). This will always be a single value. I am putting this in an array to pass to the ...
1
vote
2answers
81 views
Codeigniter: how can i tell if a model is already loaded?
Are there native codeigniter functions I can use to tell if a certain model has already been loaded? Can php's class_exists() be used to tell if a model has already been loaded?
0
votes
1answer
13 views
codeignitor - which values reference actual files and which reference classes/functions?
I am doing some tutorials of codeignitor and frustrating myself with some elementary stuff so apologies for this very low level question.
I have a model named math.php
<?php
class math extends ...
1
vote
1answer
107 views
how load model in another modules in hmvc in codeigniter?
I want to use The Modular Extensions HMVC in my Project like this:
modules
module01
models
models01.php
controllers
controller01.php
...
2
votes
2answers
151 views
CodeIgniter: How to get input from View and use it in the controller
I'm quite new to CodeIgniter (using PHP). So right now I have a textbox on my webpage where visitors are requested to enter in their names. I take in a name (i'll use the variable $username for it) ...
0
votes
1answer
67 views
MVC Structuring Models [closed]
I have a very general question on MVC(I'm working with PHP+CodeIgniter though this question fits all) : while working on my web app (a pretty simple crud application) when writing a new model function ...
0
votes
3answers
48 views
The management of files and folders in codeIgniter can be made from controller or model?
I want to verify if file/folder exists on my CI system (not system folder), can i do it from controller or I need create a method on my model to do it?
0
votes
1answer
336 views
Inserting into Database using Codeigniter
I am trying to enter some data which I post to the server via jquery.post into a database.
note = { // note object that will be sent to the server
title: $('input.xlarge').val(); ,
message: ...
0
votes
0answers
79 views
Insert in many tables with My_Model in Codeigniter
I have a site developed in codeigniter.I have done an insert into my database without validation.
Now I want to use My_Model (an extended model to validate my fields used by many developer to ...
0
votes
3answers
65 views
Codeigniter query issue
I am running the following query in codeiginter, I want to return the data from the database but I'm getting a blank array as a response. My attempts to debug this issue have shown that the return ...
0
votes
1answer
70 views
Error shown in core/Model.php codeigniter
I am newbie to Codeigniter and trying to edit fields that are entered in database. Also I am following this tutorial from CI tutorial . When I tried to run the site I got the error like
Message: ...
1
vote
2answers
350 views
Code Igniter / Fat Models / Skinny Controllers
Today, I have learned that it is considered good practice to have fat models and skinny controllers. Up to now, I have had it the other way around, so everything that I believed I understood about MVC ...
1
vote
1answer
105 views
Codeigniter static variables in model
Once a user has logged in- I want all my models to know the user's id. (Even if they are called later on).
I thought about using a static variable but it doesn't seem to work
class Base_model ...
0
votes
1answer
285 views
Codeigniter Limit not working
I'm nearly reaching rage mode!
Can anyone help me with this??
I setted a limit on a CodeIgniter Model so I can only that set of results. Why is it not working? The records are displaying correctly ...
0
votes
2answers
80 views
PHP Class inheritance referencing the parent class in codeigniter
this is my problem. I'm using codeigniter and this is my structure. I have 2 classes in 2 files
class Model_setup extends CI_Model
{
//functions
// an update function
public function ...
0
votes
1answer
67 views
Codeigniter: Check where model is loaded from?
I'm having the strangest thing ever right now.
I "disabled" a model because i don't need to access it ever again. I did so by echoing out an error string in the __construct() and right after that ...
0
votes
1answer
121 views
Codeigniter config file change from model or controller
How can we edit config file details from model or controller...? I want to change currency based on location of the user...
0
votes
2answers
64 views
call libraries from model in codeigniter
I'm trying to call a library from model in codeigniter but doesn't want to fire and I don't really know how to debug it, I have been trying to use codeigniters default logging method but doesn't show ...
1
vote
2answers
646 views
CodeIgniter, multiple queries in same model method or multiple calls to model in controller?
I'm just starting to convert some basic applications to CodeIgniter and I'm trying to make sure that I start off on the right footing.
Most actions in my controller require at least 1 query and as I ...
0
votes
2answers
121 views
Autoloading model on demand in codeigniter
Can I somehow omit the first line? i.e. $this->load->model('Model_name'); and autoload it when necessary?
To load a model you will use the following function:
...
1
vote
1answer
237 views
Codeigniter one transaction with two model
Is it possible to have one "transaction" with to separate models.
I want to insert a post with their tags. Tags and Posts are in two separate models.
How can i achive to handle it with a transaction? ...
0
votes
1answer
80 views
Creating a class name from a variable
I would like to define the class name using variables in PHP. Is this possible?
Let me explain.
I am a small custom CMS that allows the end user to configure a prefix for the table names. So a user ...



