Welcome Guest, Not a member yet? Register   Sign In
new with codeigniter
#6

[eluser]kiga[/eluser]
ey man thanks!!! that was really helpfull!! ... now i pass this and, i'm trying a crud example this is the code for model and controller (both attached) ..

well i follow the instructions for my sql
Quote:Database schema. run this script.
01
CREATE DATABASE crud;
02

03
USE crud;
04
CREATE TABLE tbl_person
05
(
06
id bigint auto_increment PRIMARY KEY,
07
name varchar(50),
08
gender char(1),
09
dob date
10
);
11

12
INSERT tbl_person (name,gender,dob) VALUES('henrihnr', 'm', '1985-09-09');
13
INSERT tbl_person (name,gender,dob) VALUES('name_001', 'm', '1990-01-01');
14
INSERT tbl_person (name,gender,dob) VALUES('name_002', 'f', '2000-01-01');
15
INSERT tbl_person (name,gender,dob) VALUES('name_003', 'm', '2000-02-02');
16
INSERT tbl_person (name,gender,dob) VALUES('name_005', 'f', '2000-04-04');
Database configuration. file: CodeIgniter\system\application\config\database.php
1
$active_group = "default";
2
$active_record = TRUE;
3

4
$db['default']['hostname'] = "localhost";
5
$db['default']['username'] = "root";
6
$db['default']['password'] = "";
7
$db['default']['database'] = "crud";
8
$db['default']['dbdriver'] = "mysql";
Base url configuration. file: CodeIgniter\system\application\config\config.php
1
$config['base_url'] = "http://127.0.0.1/CodeIgniter/";
Default controller configuration. file: CodeIgniter\system\application\config\routes.php
1
$route['default_controller'] = "person";

after all this i try to run mi application and this was te result
Quote:An Error Was Encountered

Unable to load the requested class: validation

what i'm doing wrong?

thanks for everything


Messages In This Thread
new with codeigniter - by El Forum - 04-13-2011, 01:44 PM
new with codeigniter - by El Forum - 04-13-2011, 02:02 PM
new with codeigniter - by El Forum - 04-13-2011, 04:57 PM
new with codeigniter - by El Forum - 04-14-2011, 08:47 AM
new with codeigniter - by El Forum - 04-14-2011, 11:07 AM
new with codeigniter - by El Forum - 04-14-2011, 02:11 PM
new with codeigniter - by El Forum - 04-14-2011, 03:39 PM
new with codeigniter - by El Forum - 04-14-2011, 03:43 PM
new with codeigniter - by El Forum - 04-14-2011, 04:02 PM
new with codeigniter - by El Forum - 04-14-2011, 04:07 PM
new with codeigniter - by El Forum - 04-14-2011, 04:14 PM
new with codeigniter - by El Forum - 04-14-2011, 04:17 PM
new with codeigniter - by El Forum - 04-14-2011, 04:29 PM
new with codeigniter - by El Forum - 04-14-2011, 04:43 PM
new with codeigniter - by El Forum - 04-14-2011, 04:55 PM
new with codeigniter - by El Forum - 04-14-2011, 06:43 PM
new with codeigniter - by El Forum - 04-14-2011, 08:52 PM
new with codeigniter - by El Forum - 04-15-2011, 12:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB