Feeds:
Posts
Comments

Archive for the ‘CodeIgniter Class’ Category

Step#1: create your own class
<?
class class_name {
function function_name()
{
echo “I am There”;
}
}
?>
Now save this file on your libraries (system->libraries) and file name is must according to your class name like class_name.php
 
Step#2: create a controller like this…
<?php
class own_controller extends Controller {
[...]

Read Full Post »

Requirements:
1. a swf file
2. a helper file
3. a library file
4. a controller
SWF File:
Download the file and past it root folder like http://localhost/your_folder
Helper File:
Download the helper file and past it root folder like http://localhost/your_folder/system/helpers
Library File:
Download the library file and past it root folder like http://localhost/your_folder/system/libraries
Controller File:
create a controller name Welcome and past the code:
<?php
class Welcome extends [...]

Read Full Post »