PHP

php

Top 10 MySQL Mistakes Made By PHP Developers

0

A database is a fundamental component for most web applications. If you’re using PHP, you’re probably using MySQL–an integral part of the LAMP stack.

PHP is relatively easy and most new developers can write functional code within a few hours. However, building a solid, dependable database takes time and expertise. Here are ten of the worst MySQL mistakes I’ve made (some apply to any language/database):

(more…)

php

8 Best Tutorials of Object Oriented Concepts in PHP

0

Following the introduction of PHP 5, in 2004, PHP is a worthy description of the object model and transformed into modern language for network use. Earlier PHP scripts would have been of the kind where, to quote from Alice’s Adventures, you would “Begin at the beginning, and go on till you come to the end: then stop.” Today, this approach is much more common procedure for PHP, this article collects some of tutorials of object-oriented data and it’s implementation in PHP.

OOP (Object Oriented Programming) allows us to architect our systems much more clearly and make them more manageable and easier to maintain. The technique also allows to separate form from function to establish a database of codes, clean navigation with many opportunities for reuse of code, apply design patterns and bring in concepts from other brances of computer science.

(more…)

Go to Top