Code Igniter: General Definition

Well, Code Igniter (selanjutnya disebut CI) adalah salah satu PHP framework yang sangat populer menurut versi Top Ten Framework (2nd position saat ini). Banyak sekali pengguna CI terutama di indonesia, karena CI sangatlah mudah digunakan dan dimengerti alur kerjanya.

Continue reading “Code Igniter: General Definition” »

Casting NULL as 0

There is some time in MySQL query we want the result casting will be INT or Decimal to do some on it. Normally we can do that use CAST( expr AS type ). But if our expr is NULL, the value will be still NULL and not CAST into DECIMAL (in this case i took example i want to change it into DECIMAL)

Continue reading “Casting NULL as 0” »

Firefox Review: Two Finger Swipe

Okay, here the story. Tonight i updated my Firefox into version 9.0.1 for Mac, of course after that i always check what’s new with this Firefox on Releases Notes. But what do i get, i noticed Firefox add feature two finger swipe to backward and forward your navigation.

Continue reading “Firefox Review: Two Finger Swipe” »

PHP Redirect with Time

Create PHP redirect with time

<?php
header('Refresh: 5, http://www.google.com');
?>

Number five mean five seconds

* remember, the header() must be placed before any output processed by PHP or it will give error.

1 2 3 4 5  Scroll to top