|
|
|
|
|
Login to share your opinion Using Traits in PHP 5.4Minimizing code duplication through better organization and code reuse is an important goal of Object Oriented Programming. But in PHP it can sometimes be difficult… read more Practical PHP Refactoring: Convert Procedural Design to ObjectsEven in languages where there are no constructs but classes, there is no constraint that can force a programmer into writing object-oriented code. In many… read more Private Functions In JavaScriptJavaScript doesn't have a native namespace facility so how are you supposed to keep utility and helper functions private? The solution is to use inner… read more HTML5 Web Workers: Classic Message Passing ConcurrencyMost concurrency frameworks I write about on this blog consist of numerous layers of abstraction. Consider the Task Parallel Library, for instance: it’s a wrapper… read more CSS3 breadcrumbsA breadcrumb navigation allow users to know where they are in a hierarchical structure and navigate back to higher-level pages in the hierarchy. Also, the… read more The __toString() Method – Objects as StringsWe started the study of PHP magic methods by learning about __get() magic method. All the names of magic methods are reserved and cannot be… read more Wall4PHP Mobile FrameworkWall4PHP is one of the framework that I recommend to mobile web application developer for the number of useful information that you may find inside… read more turn.js - The page flip effect for HTML5A plugin for jQuery that adds a beautiful transition similar to real pages in a book or magazine for HTML5. read more How to write PHP code to set expiration for index pagePHP language is an open source web scripting language which is included within HTML tags to implement any logic. And Due to popularity of PHP… read more How to Create Your Own Super Simple WordPress PluginsThat may not sound like a problem, but it is. Because these files are tied to your theme, if you ever want to use them… read more PHP variablesVariable is a symbol or name that stands for a value. Variables are used for storing values such as numeric values, characters, character strings, or… read more PHP Form handlingValue of the action attribute of form is used to specify the file which contains the PHP script to handle form data.Value of the method… read more isset() vs array_key_exists() in PHPOne basic difference is that isset() can be used with array and variables both while array_key_exists() can be used with the arrays only. read more Episode 5: The Hammer That is PHP - /dev/hellIn our fifth episode we speak to our first ever guest Brian Moon, ancient PHP elder of dealnews and someone who has probably forgotten more… read more Amazing things to do with PHP and cURLcURL, and its PHP extension libcURL, are very useful tools for tasks like simulating a web browser, submit forms or login to a web service.… read more Set 301 Redirection using .htaccess FileThere are several methods available using .htaccess file to redirect user from one page to another. 301 is one of the type to redirect user… read more How to protect from SQL Injection with PHPSecurity is a part of our work as developers. We need to ensure our applications against malicious attacks. SQL Injection is one of the most… read more jQuery Calendar Widget PluginA simple jQuery Calendar Widget Plugin with a month view. You can specify which month you would like to display or have it display the… read more A look at JavaScript Form ValidationValidating forms with JavaScript has been possible since the very beginning of time... or at least the introduction of LiveScript (the original name before the… read more SQL TutorialSQL tutorial of w3resource is a comprehensive tutorial to learn SQL. We have followed SQL:2003 standard of ANSI. There are hundreds of examples given in… read more |