Navigation
Website Links
- Gamestat
- MySQL MySQL Database Software
- PHP.net PHP Official Website
- Tech News Blog
- Ubuntu Linux
- Vegetable Seeds Offers fantastic value for the highest quality vegetable seeds in the UK. Over 400 varieties with next day shipping and free P&P on all UK orders.
- Zeno Framework
Tag Cloud
ajax Android backup chrome chromium cloud Code css3 Database Design dev Directory Iterator dns dropbox Essential Tools Facebook Time google google-chrome google-gears Image Rollover Java javascript jquery linux memcached MVC mysql new website OS Photoshop Brushes PHP Preloader Recursion Relative Time teamspeak Templating TinyMVC tutorial Twitter Twitter Time Validation Wordpress Wordpress 2011 Wordpress Plugins xhtml-
Recent Posts
Search
Category Archives: PHP
PHP – Custom MVC Framework with Smarty3 and ActiveRecords
After using a few different PHP MVC’s I decided to work on my own framework when I had some spare time. Over the past few days I’ve put together a lightweight and feature rich small PHP MVC Framework. Note that … Continue reading
PHP – Using the Steam XML API
Steam has had XML output on profiles, games and groups for a while so I thought I would post up one of my old classes for retrieving Steam user data. The class below will download the XML for games and … Continue reading
PHP – Easy AES Encryption Class
AES Encryption is now an easy way of securing your data with a secret key thanks to the MCrypt PHP extension. You can read documentation and basic examples on using MCrypt on the PHP.net page. Below is a small class … Continue reading
PHP – TinyMVC Session Plugin
Another TinyMVC plugin; this time to get and set session variables from within your controllers. Utilising PHP5′s magic functions to add and remove entries from the $_SESSION global, quickly and easily. Drop the following code into your plug-ins directory and … Continue reading
PHP – Useful TinyMVC View Helpers
Back again with more TinyMVC code. As I get more into this framework the more code I’ll be posting up, the functions in the code below are to be used directly from TinyMVC views and not controllers or models. One … Continue reading
PHP – TinyMVC Template Wrapper Plugin
TinyMVC provides a great structure for developing new projects, it’s small base allows the developer to write new plug-ins and extend on the existing framework. Below you’ll find a template wrapper I have made to manage the views and assigning … Continue reading
PHP Page basic page caching
One of the most useful things you can do in terms of performance is to cache the page you’re currently serving so that no code gets executed again and again when it isn’t needed. I’ve provided a sample below of … Continue reading
PHP Object to Multidimensional Array
Below is a piece of code showing how to transform an Object into a Multidimensional Array, there are quite a few functions in PHP that return stdClass objects such as some MySQL, JSON or XML functions. If it is a … Continue reading
