background preloader

Tutorials

Facebook Twitter

Ntent with Style - Clean URLs for a better search engine ranking. Search engines are often key to the successful promotion and running of your website, with high traffic making or breaking your online business.

ntent with Style - Clean URLs for a better search engine ranking

To maximise the visibility of your site in the organic listings of the biggest search engines it is important to strategically work out how keywords are used. While link building (placing links to the site or from the site) and, most importantly, writing useful content form the foundation of search engine rankings, some careful attention to how your site treats URLs will influence its ranking massively. URLs The messy ones. RegExr. Zend Framework. String Literals Containing Apostrophes When a literal string itself contains apostrophes, it is permitted to demarcate the string with quotation marks or "double quotes".

Zend Framework

This is especially useful for SQL statements: $sql = "SELECT `id`, `name` from `people` " . "WHERE `name`='Fred' OR `name`='Susan'"; This syntax is preferred over escaping apostrophes as it is much easier to read. Write your own PHP MVC Framework (Part 1) What is MVC?

Write your own PHP MVC Framework (Part 1)

From Wikipedia– Model–View–Controller (MVC) is an architectural pattern used in software engineering. Successful use of the pattern isolates business logic from user interface considerations, resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other.