Currently Browsing
ProgrammingI’ve been working a lot these days to complete several big projects, and a handful of smaller ones. They’re all related to PHP and optimization. I’ve been thinking of a switch-based PHP preloading technique, which I’m trying to implement in a couple of projects. What I’m trying to do exactly is update my CMSs and [...]
While looking at my current theme bugs (Whiskey Air), I decided to take the next step and turn it into a full HTML 5 template. So, after reading a bit of HTML 5 literature, I started changing the theme, bit by bit. I will release it free after doing all changes. I might even to [...]
I’ve been playing lately with the C programming language, as I’m building some modifications to a game engine (it’s a private project, yet). Cprogramming.com helped me finding some solutions to some common problems (I’m a beginner). Maybe it’ll help you, too.
The California Guys is a real life story by Allen Pike. It has been described by its author as Some lessons in contracting learned by being a slave programmer. The web app was rendering using a clutter of frames, which obviously had to go. The visual design was horrible, the usability was horrible, the whole [...]
Method 1. This is the simplest way to list files in a folder: <?php $dir = "."; $dh = opendir($dir); while (($file = readdir($dh)) !== false) { echo $file.’<br />’; } closedir($dh); ?> In order to add links to the files in the folder, we modify the code as below. Warning, this might pose some [...]
I am working on updating my smartphone and modifying some blogs’ themes to be mobile compatible. This is a request from a few clients. If I succeed, I will also turn several of my blogs into mobile compatible blogs. Mobile compatibility for WordPress blogs can be achieved by plugins or manually. I, personally, don’t like [...]
Ever had problems with an old browser displaying your favicon? Try this method of selectively adding a favicon for Internet Explorer and all other browsers: <link rel=”icon” href=”http://www.butterflymedia.ro/favicon.ico” type=”image/x-icon”> <!–[if IE]><link rel=”shortcut icon” href=”favicon.ico” type=”image/x-icon” /><![endif]–> And don’t forget to place your favicon file in the root. Even if you don’t specify it, some browsers [...]
What is the best online commerce software? What about the best online commerce script for developers? I am working for several clients and I have to use a flexible cart script to add and remove features, even turn some of it into a small content management system. While searching the Internet for an open-source solution, [...]
I have finally installed a syntax highlighter plugin. The theme lacked one, and now it looks more professional. Check out the latest tutorials to see what I’m talking about. PHP/MySQL Counter Tutorial PHP/MySQL Contact Form Tutorial MD5 Encoded Password










