Tagged Questions
0
votes
1answer
43 views
Correct way to use Model's method in codeIgniter's view?
From my VIEW, let's call it 'index', on a button click I would like to perform a DATABASE QUERY without loading the page again , however I cannot think of a method to so without breaking the MVC ...
0
votes
2answers
59 views
Include all codeigniter functions to a new static page(php file) which is located in root folder. [closed]
I am developing a website which having many static pages. so i created controller only for dynamic pages(it might be wrong practice). Keeping all other static files in root folder. Now i want to use ...
0
votes
1answer
55 views
Is HMVC the solution for a plugin framework? [closed]
I want to create some sort of plugin framework (see: CodeIgniter - how to create a plugin system?). After doing some more research into the problem, I am wondering if HMVC is the solution. Any ...
1
vote
2answers
47 views
Is calling a model from a view in codeigniter bad?
Ok I have been creating a small test site using code igniter and so far I have my Login and logouts done. Those all follow proper MVC I think with logic in the controller, the actual work in the model ...
1
vote
1answer
238 views
CodeIgniter Best Practice Items List
I'm creating an ebay-style (but more simplistic) shop in CodeIgniter and I'd like to know the best way to handle the items code/controllers.
At the moment, I've got a Category controller which is the ...
1
vote
2answers
616 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 ...
2
votes
2answers
198 views
MVC - Does this code belong to model, controller or view?
I have in my site notifications, similar as facebook. But I only have 3 type of notifications:
[nickname] sent you a new quize [quizename]
[nickname] added you to his group [groupname]. accept | ...
2
votes
1answer
192 views
MVC:: Which goes where?
I was a flat php programmer for past 2 years. Now I want to move to MVC architecture and so I am using codeigniter which looks very simple to start with. I want to know some of the best practices out ...
0
votes
2answers
230 views
Code Igniter - converting to MVC model - select within result set loop
I'm still trying to get my head around MVC I have a straight php/mysql page that basically works by getting
select * FROM table1
then looping through the result set
and on each loop running a Join to ...
0
votes
1answer
333 views
How to pass Model objects in CodeIgniter session from controller to controller?
I am fairly new to CI and I am working my way through a project using it.
I am using CI 2.1.2 DataMapper 1.8.2.1.
I am trying to post a login form to http://www.example.com/userauthcontroller/login
...
0
votes
2answers
256 views
Grocery crud in windows hosting
I have setup Codeigniter on my server and I installed Grocery crud on it. Unfortunately server is windows based and does not support url rewriting and I am stuck using Grocery crud with it.
Can ...
0
votes
1answer
215 views
Codeigniter: How should I structure my chat plugin so that it can be loaded in other pages?
I've built a chat plugin consisting of a chat.php controller, chat_model.php, chat_view.php and chat.js. I'm also using jQuery to perform AJAX requests to the controller.
The chat works fine as its ...
1
vote
2answers
123 views
Loading a Model inside of a config file to pull configurations from DB and store in $config array
I'm refitting an existing website to work with codeigniter. The current system stores the navigation config in a single table cell using XML in this format:
<NAVIGATION>
<item1>
...
0
votes
1answer
531 views
Running 2 queries in model (codeigniter)?
For example, if I run one query in model:
public function list_users() {
$q = "SELECT user_id, username FROM users";
return $q->result_array();
}
And now, to lists posts from that ...
0
votes
0answers
110 views
Pass data from library to controller and then to view in CodeIgniter 2
I'm trying to pass some data from my custom library to the controller and make it available in my view. For the life of me, I can't see where I'm going wrong.
I was going to get database results; for ...
0
votes
1answer
237 views
Codeigniter structure
I am planning to develop a portal separated into modules using codeigniter's third party HMVC.
One such module is "Classifieds".
I was thinking of the following structure:
...
0
votes
1answer
615 views
Code Igniter form not posting
I have made a site in CodeIgniter2, but I can't get the forms to work, as I can't seem to even work out how to get it to post! Any help? Here is my code and the forms are only on the recommend, ...
1
vote
2answers
718 views
Loading View Page In Library In Codeigniter
In my codeigniter i created a library in library folder.I want to load view pages in that library.How can i do this?
This is my code:
$this->load->view('view_page');
But when iam using this ...
0
votes
2answers
850 views
Code Igniter pagination 404 error
I am having problems with Code Igniters pagination module.
When I go to click on the links I get a 404 error. As I understand and I may be incorrect, but it would seem that the uri segment which ...
0
votes
2answers
232 views
Not to load an autoload library in codeigniter
I have a library which is used by all controllers. But for a specific controller i dont want to load that library. Is there any way i can stop loading that library for that controller.
i am using ...
1
vote
1answer
60 views
Need to manipulate my url
I'm literally just starting to throw a site together today, so I don't even have much to work with yet, but I wanted to throw this out there so I'll have the information when I get there. I'm using ...
0
votes
1answer
40 views
What's the best approach for selectively displaying content in views (MVC) [closed]
I was wondering if I am doing the right thing when it comes to selectively displaying content (based on a user level, for example).
At the moment I am just putting the checks directly in the views, I ...
0
votes
2answers
183 views
CodeIgniter routing with app ID's and entry ID's
I'm new to CodeIgniter and going to be using it for building a sort of reusable application with multiple instances of an application. For example, each instance of the application will have an id ...
0
votes
3answers
729 views
CodeIgniter - modular?
I'm building several sites that need similar "modules." For example, the sites may have the exact same login system, forum, etc.
Is there a way I could build these modules once and just "drop" them ...
6
votes
3answers
479 views
Share CI models between different applications
I'm still trying to figure out a way to get a mobile site running. I have a web app in CodeIgniter and I would like to create a mobile version of it. However, I don't want to rewrite too much of my ...