Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7628699
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:38:38+00:00 2026-05-31T05:38:38+00:00

I try to create my own helper but face a problem. First i create

  • 0

I try to create my own helper but face a problem.

First i create a function called select. First if you see something wrong in this method pls tell me.

public function select($where = null, $order = null, $limit = null, $columns = '*') {
        if (!$columns)
            $this->db->select('*');
        elseif (is_array($columns)) {
            $columns = implode(',', $columns);
            $this->db->select($columns);
        }

        if ($where)
            $this->db->where($where);
        if ($order)
            $this->db->order_by($order);
        if ($limit)
            $this->db->limit($limit);

        $query  = $this->db->get('pasaj_register');

        return $query;
    }

and then i try to call this function like that

pasajItem  = new pasajItem();
         $a = $pasajItem->select();
         echo $a;

However i take this error:
enter image description here

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T05:38:39+00:00Added an answer on May 31, 2026 at 5:38 am

    Within a helper you cannot acces the database.
    First of all, it’s not intended to do so.
    You’ll probably want to make a library of this, where you give a reference to the database on creation.

    Besides the design flaw i believe you are making here, you have to use:

    $CI =& get_instance();
    $CI->db->*****
    

    to access the CodeIgniter Database from a helper or library.
    This is because they don’t derive form a CodeIgniter standard class which contains the objects.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I try to create an array of Integers (i tried with own object but
I read this http://developer.android.com/resources/tutorials/notepad/index.html and now try to create my own simple example. For
I try to create my own capcha (ctrlCapcha :UserControl) and I would like to
I try to create my own application bar in my app based on StackPanel.
So I try to create my own window system (because I want to have
I try to create options menu in a TabActivity. But instead of it I
In Codeigniter, when we use $this->load('class_name') in the controller, CI will try to create
I'm new to unit tests for my own projects, so this is my first
I try to create my own websocket server. It works good with Safari and
I try to create in an app something like a splitscreen. On the top

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.