Re: Blank screen on CI - simple code Programming Web Development by cereal CI logs are enabled? In `/application/config/config.php` search and … Select multiple Programming Web Development by David_208 Ci-après le code : <?php $query = "SELECT ownerID,… Re: [opinion] What is the best php framework? Digital Media UI / UX Design by paulkd CI and other frameworks help you organise your PHP code. People have built blog applications and CMS's using PHP, and some have probably used CI as a means to keep their code logically arranged (didn't want to use organise twice ;-) ). I have created a PayPal class on a non-CI site and expect to easily incorporate the code into future CI sites. Re: Selling ad space on eBay? Digital Media Digital Marketing by Dani CI Host actually paid someone a hefty sum to tattoo their … Re: zend, codeIgniter or symfony2 Programming Web Development by diafol CI was my first framework and I liked it coz it allowed 'looseness'. The MVC wasn't stricly required, which was cool for a beginner. Have you had a look at Yii - this is my current favourite, only downside is that it doesn't have the same userbase as the other ones you mention. Re: You choice of....... Programming Web Development by diafol CI good for beginners to Frameworks/OOP. However the looseness of … Re: how to destruct sessions in code igniter Programming Web Development by cereal CI Session doesn't use PHP native Session, so you don'… Re: CI CRUD - routes Programming Web Development by cereal …when you try to access your `ci` controller you do something like this: http://website.tld/ci/ci/ Correct? > I only …routes 2 controllers in my routes: ci and caddLatihan. (only ci works) If it was the .htaccess then your… `ci` controller should not work either, so do not change … Re: CI application Programming Web Development by LastMitch … saw there are two folders: site & admin folders in CI application folder. If someone created those 2 folders, then you… being rude but you been posting these ridiculous questions about CI when you can look at their guides & forum. …There are tutorial on CI but you seen want to get a quick answer/code… Re: CI application Programming Web Development by davy_yg Well, I have been reading the CI guides. The CI tutorials from google also a good idea. I have asked … I keep asking too much about the programming side of CI. So I thought I am looking for another source to… help me. I receive this errors when I run the CI program after seperating the site and admin in application folders… Re: CI CRUD - routes Programming Web Development by davy_yg Now, I only routes 2 controllers in my routes: ci and caddLatihan. (only ci works) ci is my CI installation directory. How to edit my .htaccess? CI application Programming Web Development by davy_yg Hello, I am trying to understand the CI code that somebody made. I saw there are two folders: site & admin folders in CI application folder. I wonder why? Is it to separate the site and admin page? Is that possible? Re: CI CRUD - routes Programming Web Development by cereal Davy: 1. are you able to directly open this link? 2. do you experience this problem just with these two controllers or it is a common issue to all controllers? I see you're using a different link now: /ci/caddLatihan/ If your CI installation is inside `/ci/` then you should edit your .htaccess files in order to reflect the path. Re: CI application Programming Web Development by PixelatedKarma I dont really dabble to much in CI, however what you have is a broken require link. Basically … Re: CI application Programming Web Development by Tpojka It is custom made file system, not CI native. You need to be sure if site folder is … Re: CI application Programming Web Development by GliderPilot If you're going to change the folder names for the application and system folders you need to go into the main CI index.php file and change those values to your new file names. Re: CI CRUD - routes Programming Web Development by davy_yg …; <button type="button" onClick="parent.location='/ci/caddLatihan/'">Add Latihan</button><br…;head> <title>File View untuk Latihan 2 CI </title> </head> <body> <… CI image downloading Programming Web Development by veledrom …->load->helper('download'); // $filepath below produces http://localhost/CI/upload/82df53aae33450324bd26cd880d678b5.png $filepath = base_url() . 'upload/' . $this->uri->… CI site in a subdomain, shows index of page instead of the site Programming Web Development by cgull … a sub domain. I have a site I developed with ci 2.1.3 My folders structure is: c:\sites\mysite… CI CRUD - routes Programming Web Development by davy_yg …, I am still having problem with this basic stuff in CI: viewlatihanci.php <button type="button" onClick="… Re: CI CRUD - routes Programming Web Development by cereal …/user_guide/installation/upgrade_200.html) My opinion: since you're using CI it is highly convenient to switch to the last version… Re: CI CRUD - routes Programming Web Development by davy_yg Looks like I am using CI 1.7.2 temporarily. where is the .htaccess located? I try to insert: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] in order to delete the index.php Re: CI CRUD - routes Programming Web Development by davy_yg Nevermind. I migrate to the newest version of CI - CI3: Now, I am having this error: A PHP Error … Re: CI CRUD - routes Programming Web Development by davy_yg ok, I re-migrate to CI 2.2.1 Here is my errors: A PHP Error … Re: CI CRUD - routes Programming Web Development by davy_yg …;head> <title>File View untuk Latihan 2 CI </title> </head> <body> <… Re: CI CRUD - routes Programming Web Development by davy_yg …;head> <title>File View untuk Latihan 2 CI </title> </head> <body> <… Re: CI CRUD - routes Programming Web Development by davy_yg …;head> <title>File View untuk Latihan 2 CI </title> </head> <body> <… Re: CI CRUD - routes Programming Web Development by cereal …. Also: use `$this->input->post()` instead of `$_POST`, CI will sanitize the data through the input class. Last: don… Re: CI CRUD - routes Programming Web Development by davy_yg …'); return $this->db->insert('latihan', $this); } } ?> database: ci table: latihan id isi 1 contoh latihan pertama 2 contoh… Re: CI CRUD - routes Programming Web Development by cereal … week](https://www.daniweb.com/web-development/php/threads/492210/ci-crud-routes#post2155634), are you loading the form helper in…