NoSQL databases

NoSQL DEFINITION: Next Generation Databases mostly addressing some of the points: being non-relational, distributed, open-source and horizontal scalable. The original intention has been modern web-scale databases. The movement began early 2009 and is growing rapidly. Often more characteristics apply as: schema-free, easy replication support, simple API, eventually consistent / BASE (not ACID), a huge data …

Understanding PHP eval function and usage Do more than just evaluating

#1: The syntax behind the eval(); It is very simple and straight forward… You pass any string argument through the  eval construct. The string will be treated as any PHP code. The basic syntax is: http://www.intechgrity.com/understanding-php-eval-function-and-usage-do-more-than-just-evaluating/