Archive for the ‘PHP’ Category

Netbeans & PHP

whui… barusan lihat screen cast demo netbeans untuk PHP. Lumayan keren untuk ukuran PHP editor. so selengkapnya lihat di sini :

Read more »

Load multiple helpers in codeigniter

Guys, it’s easy to load multiple helpers in codeigniter… You don’t have to type :

$this->load->helper(‘url’);
$this->load->helper(‘form’);

But, it’s easy to load multiple helpers. Just type :

$this->load->helper(array(‘form’, ‘url’));

and, you have just got your helper classes !!!easy isn’t it ?