Today I had this error on my Ubuntu Linux box Fatal error: Cannot redeclare geoip_country_code_by_name() The reason was that I have geoip extension enabled in my PHP configuration and also I used the geoip.inc file from maxmind.com. The solution is very simple. Actually, there are two solutions: First is to disable the geoip extension from… Continue reading Cannot redeclare geoip_country_code_by_name
Tag: php
A simple MVC framework
I will describe in the following post a (very) simple MVC framework. You can download the source code from here or can make a copy from bitbucket repository. As you can see, we have the following folders: – web: here resides your public files (images, css, and index.php) – app: here you can find application… Continue reading A simple MVC framework
Public, Private, and Protected in PHP
or how to manage access to your classes. In PHP there are three levels of access for properties and methods from within a class: public, private, and protected. Public access is the default setting for method and for properties. Public properties and methods can be accessed from any context. Private methods and properties can ONLY… Continue reading Public, Private, and Protected in PHP