After installing Mountain Lion I discovered that Apple changed their settings for Apache. Here are some amazing tutorials I came across that will help you…
Tag: php
The Scope Resolution Operator (::) explained
I remember when I first came across the mysterious double-colon (::), also known as the Scope Resolution Operator. I was experimenting with a php library…
Increase PHP Script Execution Time Limit Using ini_set()
Today I had to set the PHP script execution time directly from within the php file. Here’s what I did. Add the following code to…
MVC architecture explained briefly.
Inevitably every programmer is going to encounter MVC architecture. MVC or model-view-controller is a pattern used by applications that divides the application into 3 parts.…