| | Date | Title | Author | Hits |
| | 07-06-10 | | Alejandro Gervasio | 11874 |
In this twelfth part of the series I finish building the controller class that permits you to run CRUD operations against the pertinent “users” MySQL table. This class uses the model to interface with the data layer, the input class to filter incoming data, and the view class to display output on the browser. This process demonstrates the real functionality of the MVC framework developed in previous tutorials. |
| | 07-01-10 | | Apress Publishing | 7280 |
In this third part of a five-part series on strings and regular expressions in PHP, you will learn how to convert strings to and from HTML, and more. This article is excerpted from chapter nine of the book Beginning PHP and Oracle: From Novice to Professional, written by W. Jason Gilmore and Bob Bryla (Apress; ISBN: 1590597702). |
| | 06-30-10 | | Alejandro Gervasio | 12557 |
In this eleventh part of the series, I expand the initial functionality of the user controller class defined previously by adding two simple methods to it. These allow it to create new users in the associated MySQL table. |
| | 06-29-10 | | Alejandro Gervasio | 14582 |
In this tenth part of the series, I start building a basic MySQL-driven application whose main tasks consist of selecting, inserting, updating and deleting records on some hypothetical users by means of the framework we've built. |
| | 06-28-10 | | Alejandro Gervasio | 16873 |
In this ninth part of the series, I add an extensible model class to the framework. This class can be used for running CRUD operations against a selected MySQL database table. |
| | 06-24-10 | | Apress Publishing | 9174 |
In this second part of a five-part series on strings and regular expressions in PHP, you'll learn about regular expression functions and a variety of string-specific functions. This article is excerpted from chapter nine of the book Beginning PHP and Oracle: From Novice to Professional, written by W. Jason Gilmore and Bob Bryla (Apress; ISBN: 1590597702). |
| | 06-23-10 | | Alejandro Gervasio | 14583 |
In this eighth part of the series, I add to our example MVC-based framework another crucial component. In this case, it's a class that parses data usually injected from a controller and rendered in the form of HTML pages. |
| | 06-22-10 | | Alejandro Gervasio | 11978 |
In this seventh part of the series, I add a cache class to the classes that comprise the MVC-based framework we're building. The new class uses the file system as the underlying backend for caching data, but it’s also possible to create one that caches data on shared memory, a SQLite database and so forth. Indeed, numerous possibilities exist. |
| | 06-21-10 | | Alejandro Gervasio | 11742 |
In this sixth part of the series, I finish building a basic HTML form helper class. Doing this adds yet another important component to the sample MVC-driven framework we're developing in this group of tutorials. |
| | 06-17-10 | | Apress Publishing | 9069 |
Strings and regular expressions are among the basic tools that help programmers get their jobs done. This five-part article series covers how these are used in PHP. It is excerpted from chapter nine of the book Beginning PHP and Oracle: From Novice to Professional, written by W. Jason Gilmore and Bob Bryla (Apress; ISBN: 1590597702). |
| | 06-16-10 | | Codex-M | 12204 |
Submitting XML sitemaps to Google Webmaster Tools is an important webmaster activity. Google recommends using it to help it find new content in your website which otherwise cannot be crawled by Googlebot. This is particularly helpful if you have a fairly large website. In this article, you'll learn how to generate such a sitemap with PHP. |
| | 06-15-10 | | Alejandro Gervasio | 13064 |
In this fifth episode of the series, I start building an HTML form helper class to add to this sample MVC framework the ability to render some basic form elements. |
| | 06-14-10 | | Alejandro Gervasio | 15384 |
In this fourth part of the series, I show you how to provide this sample MVC-driven framework with the ability to sanitize user input by way of a basic input class. |
| | 06-08-10 | | Alejandro Gervasio | 51254 |
In this second part of the series, I add another crucial component to this example MVC-driven framework. It's a basic router/dispatcher class. While the incorporation of this brand new module turns the framework into a more functional piece of code, there are other components that still need to be developed. |
| | 06-07-10 | | Alejandro Gervasio | 93499 |
In this first part of a series, I develop the first module of a model-view-controller (MVC) driven framework, which happens to be a front controller. By combining this component and a basic .htaccess file, it’s possible to route all HTTP requests to the (still-undefined) dispatcher class. |