This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Saturday, March 5, 2011

Building a Simple Blogger with the Code Igniter PHP Framework

In case you haven't heard about it, Code Igniter is a powerful, comprehensive framework written in PHP 4 that provides developers with a robust set of classes and helpers that can be used for building different web applications by means of the Model-View-Controller pattern, which separates application logic from visual presentation. Thus, in this series of articles I'm going to explain how to build a basic blogger with Code Igniter. I will explain it in a step-by-step fashion to allow you to get an excellent grounding in its main features, as well as learn how to implement the MVC approach in a real-world situation. This is a sample blog with Code Igniter you can download it he...

Wednesday, February 23, 2011

create and configure htaccess for codeigniter

Create .htaccess file on index.php. RewriteEngine On RewriteBase /sitename RewriteCond %{REQUEST_URI} ^system.* RewriteRule ^(.*)$ /index.php/$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] php_flag display_errors on Enable rewrite_module on apache server. Enable include_module on apache server. Enable cgi_module on apache server. Enable short open tag on php server. Configure config.php become. $config['index_page'] = "...

Thursday, February 3, 2011

Install mikrotik in VMware

Install VMware. Create virtual machine for windowsclient New->Virtual Machine. Edit Windows client virtual machine setting For windows client Network adapter1->VMnet1 Create virtual machine for mikrotik New->Virtual Machine. Edit mikrotik Virtual Machine Setting For mikrotik Network adapter1->bridged and Netwok adapter2->VMnet1 Add network address on network adapter1 (public) ip address add address=192.168.1.128/24 interface=ether1Add dns address ip dns set allow-remote-requests=yes primary-dns=192.168.1.254Set gateway address ip route add gateway=192.168.1.254Check connnection with ping request "ping google.com". Add...

Monday, January 31, 2011

Facebook autocomplate style with jquery

FCBKcomplete allows to generate fancy facebook-like dynamic inputs with auto complete & pre added values. website demo downl...

pharmacy relationship design database

The following is one form of examples of inter-relationship database design table for pharmacy Refference: http://rankga.wordpress.com http://blog.its.ac...

Friday, January 28, 2011

Make Auto Readmore on Blogspot

Edit HTML and find </head>. Copy-paste and put this script bellow in above code script </head>, and continuous "Make Auto Read More Functions". <script type='text/javascript'> var thumbnail_mode = "float" ; summary_noimg = 250; summary_img = 250; img_thumb_height = 120; img_thumb_width = 120; </script> <script type='text/javascript'> //<![CDATA[ function removeHtmlTag(strx,chop){ if(strx.indexOf("<")!=-1) { var s = strx.split("<"); for(var i=0;i<s.length;i++){ if(s[i].indexOf(">")!=-1){ s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length); } } strx = s.join(""); } chop = (chop < strx.length-1) ? chop : strx.length-2; while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++; strx = strx.substring(0,chop-1); return...

Create Authentication Login On Code Igniter With Extends Controller

Create MY_Controller.php on /system/apllication/libraries/. <?php class MY_Controller extends Controller { function My_Controller() { parent::Controller(); $this->is_logged_in(); } private function is_logged_in() { $this->ci =& get_instance(); $this->ci->load->library('session'); if(! $this->ci->session->userdata('login')) { redirect('login'); } } } ?>Login Controller login.php <? /** * Login Class * * */ class Login extends Controller { /** * Constructor */ function login() { parent::Controller(); $this->load->model('Login_model', '', TRUE); } /** * Check User Status, if login status it will appear in main page, * If Not it'll redirect in login...

Pages 41234 »