MVC Framework
MVC is a way to divide the application to three main parts: Model, View and Controller.
Read the rest of this entry »MVC is a way to divide the application to three main parts: Model, View and Controller.
Read the rest of this entry »A pull MVC Framework has
Read the rest of this entry »Yeakum is a PHP framework that I created from scratch to show some of our employees how a MVC Framework works. Yeakum is open source and is up on the sourceforge repository.
Read the rest of this entry »First of all let me explain what an autoloader is. An autoloader is a function (__autoload()) that is call each time you try to use a class/interface($object = new class();) that has not already been included as a last ditch effort to include the class before an PHP fails with an error.
Read the rest of this entry »When you have a script or framework that makes a Persistent connection to the database the connection will not close till the execution of your script or framework ends.
Read the rest of this entry »An absolute path is the full path to a site or file on a site. For instance, http://www.yoursite.com is an absolute path to your site. A relative path is a path that is relative the the location of the file that is calling for the path. Using relative paths is fine and all till you [...]
Read the rest of this entry »