CodeIgniter : https://github.com/bcit-ci/CodeIgniter.git
Leave a CommentTutorials / Programming tips Posts
Here is a custom HTML macros for Facebook Open Graph meta tags. if you don’t had any idea about FB open Graph meta tags ,…
Leave a CommentThere are times when you have huge data in table , and you my want to replace some text with something or you may be…
Leave a CommentHere is the class list of Twitter bootsrap3 .navbar .caret .label .table .img-responsive .img-rounded .img-thumbnail .img-circle .sr-only .lead .text-muted .text-primary .text-warning .text-danger .text-success .text-info .text-left…
Leave a CommentSending Ajax requests to server with JQuery library is pretty easy. We just need to include JQuery in your page after that we can use…
Leave a Comment$ci =& get_instance(); // instance of the CI super variable $ci->router->fetch_class(); // for controller name $ci->router->fetch_method(); // for method name
Leave a CommentUsing the below methods you get controllers and action names in the CodeIgniter. You can access with below since the above methods are deprecated.
Leave a CommentMethod chaining means that you can chain method calls in one single statement.All the methods are mutator methods which will return the original object or…
Leave a Commentvar image = document.getElementById(‘my_image’); var width = image.naturalWidth; var height = image.naturalHeight;
Leave a Commentecho $currentScriptFileName = basename($_SERVER[‘PHP_SELF’]); // My Output : main.php echo $currentScriptFileName = echo basename(__FILE__); // My Output : main.php
Leave a CommentWhile moving your web application to new host , you may get errors while importing large database into new hosting sever via PHPMyAdmin tool due…
Leave a CommentHiding the mouse cursor on the page or element is really not a useful thing in reality.Here I just want to show you that hiding…
Leave a CommentConfiguring multiple database adapters in zf2 is pretty easy. In this post, I will show you how to configure and connect to different databases in…
2 CommentsThis is a basic Twitter Bootstrap 3 template that I use most of the time for Twitter Bootstrap 3 based projects. Bootstrap 101 Template Hello,…
Leave a Comment<?php query_posts(‘cat=-1’); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <h3></h3> <p><?php the_time(‘F jS,…
Leave a Comment