Jul 28
Tags:
Ext JS Library,
php

qWikiOffice is an open source project for creating desktop-like web interfaces.
With the power of Ext JS Library (& PHP), it offers a very similar usage to desktops with:
- windows
- start menu
- dialog boxes
- taskbar & more..
Jul 21
Tags:
CMS,
open source,
php
The content management system you choose can really make a huge difference in how much time you (or your clients) spend keeping a site updated and maintained. There’s a huge variety out there—some estimates put the number at around 1700 different options. Some are great…some, not so much.
Below are ten useful guidelines to consider when choosing a CMS, followed by rundowns on ten great CMS options available and how they stack up based on the guidelines.
1. The CMS you choose should be really good at whatever the main function of your website is.
2. A CMS needs to work intuitively.
3. The backend needs to be standardized.
4. The backend needs to be logical and well-organized.
5. The right CMS shouldn’t have a ton of extra functionality you’ll never use.
6. The right CMS should be easy for non-geeks to use.
7. It needs to include a WYSIWYG editor.
8. The pages it creates should be fast-loading and have simple code.
9. The template engine should allow you complete creative control.
10. The right CMS should have adequate support and documentation.
Nov 06
Tags:
history,
php
1. Use PHP Only When You Need it - Rasmus Lerdorf
2. Use Many Tables With PHP and MYSQL for Scalability - Matt Mullenweg
3. Never, ever trust your users - Dave Child4. Invest in PHP Caching - Ben Balbo
5. Speed up PHP Development with an IDE, Templates and Snippets - Chad Kieffer
6. Make Better Use of PHP’s Filter Functions - Joey Sochacki
7. Use a PHP Framework - Josh Sharp
8. Don’t use a PHP Framework - Rasmus Lerdorf
9. Use Batch Processing - Jack D. Herrington
10. Turn on Error Reporting Immediately - David Cummings
Read the full article here…
Nov 06
Tags:
blog,
oops,
php
In the past few weeks NETTUTS has posted quite a few great tutorials on how to get started using PHP and MySQL to create simple web applications such as a shout box. Today we are going to take our knowledge of PHP and MySQL a step further by creating a simple blog. While there are countless excellent free blog platforms, the purpose of this tutorial is not to make a “better” blog but to use the process of making a blog to learn about advanced database structure techniques and how to use data more efficiently by utilizing objects in PHP. Get the tutorial here…
Oct 30
Tags:
code,
Framework,
php
When it comes to web programming languages, PHP probably holds the record for copping criticism from the community at large. Comparisons with alternatives such as Ruby on Rails and Python/Django are common; defenders of PHP are quick to criticise the comparison of a language and a framework. But at the end of the day, developers work with Ruby on Rails, and with Python/Django, and with PHP. Just PHP. For most of the PHP applications out there, the language is just perfect, because PHP, to an extent, is the framework.
PHP is designed for the web. You could plug vanilla Ruby or Python into a web server and get up and running pretty quickly. But, at least at a basic level, you’d want a framework to deal with common issues of web development. In PHP, you just get started. PHP and Apache work out request data, output handling and more, right out of the box. (PHP also masters deployment.) David Heinemeier Hanson, the creator of the Ruby on Rails framework, calls this the immediacy of PHP.
Now, consider the “average” PHP frameworks. They help you handle request data, manage your output, control app flow - essentially, extending …
read more from SitePoint