RSS
 

Posts Tagged ‘codeigniter’

Reading $_GET variable on CODEIGNITER

14 ago

There are multiple solutions out there but i did create my own.

It’s simple as 1,2,3. Hope it helps.

		// CODEIGNITER HACK
		$tmp = explode('?',$_SERVER['REQUEST_URI']);
		$tmp = explode('&', $tmp[1]);

		foreach($tmp as $keyval) {
			$tmpAppoggio = explode('=', $keyval);
			$_GET[urldecode($tmpAppoggio[0])]=urldecode($tmpAppoggio[1]);
		}
		// end of codeigniter hack
 
 

How to use codeigniter with eclipse helios

24 giu

Codeigniter is a great framework. Eclipse is a very nice IDE. Why not using them both when writing our own apps ?

After some googling i found a way to get auto-completion with codeigniter on eclipse.

Requirements:

  1. Xampp : I suggest using xampp lite.
  2. Codeigniter: Obviously
  3. Eclipse Helios for PHP Development : :)

Read the rest of this entry »

 
 
 

Wordpress Seo Plugin