Categories
Search

Advanced Search
 »  Home  »  Internet  »  Web Development  »  PHP
PHP
» An Extensive Examination of the PHP DataGrid Component: Part 1
One of the most common tasks in PHP is retrieving data from a database table, and creating a HTML table to output that data. It is done in almost every project, and it is usually a really boring task, because the code is always nearly the same, but not just same enough to be able to copy it.
» Creating Dynamic Website Content with PHP - MySQL
Fresh website content for your visitors can be of real benefit when attempting to generate repeat traffic. Most webmasters, however, just don’t have enough spare time to frequently update or rebuild their pages manually. If your web site hosting company provides free access to PHP and MySQL, this article will show you how to combine those two open source tools and replace a portion of your websites’ static content with frequently changing dynamic content.
» Mastering Regular Expressions in PHP
A regular expression is a pattern that can match various text strings. Using regular expressions you can find (and replace) certain text patterns, for example "all the words that begin with the letter A" or "find only telephone numbers". Regular expressions are often used in validation classes, because they are a really powerful tool to verify e-mail addresses, telephone numbers, street addresses, zip codes, and more.