background preloader

Reference

Facebook Twitter

Programming

A Periodic Table of Visualization Methods. PHP Tutorials Utopia: 13 Vital PHP skills for every novice PHP developer and solutions - aComment.net. Today, I’m going to write about PHP, The most popular server-side scripting language. There are lots of articles & tutorials online that help novice PHP developers to learn PHP step by step. In this post I’ve listed some of the best PHP tutorials, articles & resources in some of the most important PHP skills. After reading the following tutorials and learning them (of course not all of them), you are free to name yourself a semi-professional PHP developer! PHP Basics Before getting started to improve your PHP skills, Just wait a moment and take a look to the two resources below to check whether you know the PHP basics or not. W3schools PHP tutorials – to learn PHP basics, is one of the most popular online resourcesPHP 101: PHP For the Absolute Beginner – This 15-part series of PHP tutorials is intended for everyone new to PHP 1- Object Oriented Programming (OOP) in PHP 2- PHP Template Engines 3- Sending & Managing PHP Emails 4- Learn How To Use PHP Frameworks 6- Databases: PHP& MySQL Tutorials.

Properties : CSS 2.1 Reference : Cultured Code. Top 10 custom JavaScript functions of all time. Wednesday Nov 30 2005 UPDATE: For anyone who lands on this article months after the fact, there is now a podcast entry about this article reviewing each and every function. If there was ever a universal common.js shared among the entire develosphere, you'd fine these ten (plus one bonus) functions. It would be the swiss army knife no developer would go into production without. They have no doubt been tested tried and true and have proven usefulness and helpfulness to all those who've used them.

So without further ado, here are what I believe to the top ten greatest custom JavaScript functions in use today. 10) addEvent() Surely a staple to event attachment! Scott Andrew's original addEvent() function function addEvent(elm, evType, fn, useCapture) { if (elm.addEventListener) { elm.addEventListener(evType, fn, useCapture); return true; } else if (elm.attachEvent) { var r = elm.attachEvent('on' + evType, fn); return r; } else { elm['on' + evType] = fn; } } 9) addLoadEvent() 7) cssQuery() QuickRef.org - all your docs are belong to us - PHP, Perl, CSS, HTML, Java, JavaScript, MySQL, Ruby, and more.