Simple web design, web development, information technology, & technical communication

Articles and resources for web developers and the average person. Topics include web development, web design, technical writing and communication, and all aspects of information technology.

PHP Programming

PHP (PHP Hypertext Pre-processor) is a server-side programming language that gives Web developers the ability to build virtually any type of application, from simple contact forms to shopping carts, dynamic job sites, and complex content management systems. In addition to its robustness and versatility, PHP is free (most Web hosts provide PHP in even their most basic plans), and it runs on both Linux and Windows-based Web servers. For these reasons, and many more, it should be no surprise that PHP is the scripting language of choice for many Web developers.

Creating a simple, 1-page PHP mail, contact, or feedback form

Tuesday, December 12th, 2006 by Chris Jason

With some clever coding, you can bypass the need to submit form data from one page to another and instead manage an entire PHP form application in one file. By posting form data to the same page, complex form maintenance becomes very simple.

2 Comments (Talk about it now)

Using comments in PHP

Wednesday, May 31st, 2006 by Chris Jason

If you’ve ever had to work through another programmer’s code to complete a project, you probably understand the importance of commenting code. This quick tutorial shows the 3 different ways to comment your code in PHP.

1 Comment (Talk about it now)

Use PHP to strip the last character in a string

Saturday, April 22nd, 2006 by Chris Jason

Whether you’re working with a string created from a database query or array, here’s a cool trick to strip the last character (comma) of a comma separated list of values using PHP.

9 Comments (Talk about it now)

Using PHP includes

Monday, October 24th, 2005 by Chris Jason

By using PHP server-side includes, you can greatly increase the scalability and ease of maintenance of your Website.

1 Comment (Talk about it now)

String manipulation in PHP

Saturday, October 8th, 2005 by Chris Jason

The ability to manipulate string variables in PHP is extremely helpful. This tutorial will outline some of the more common situations you’ll encounter when working with PHP string variables.

11 Comments (Talk about it now)

Formatting money / currency using PHP

Sunday, September 18th, 2005 by Chris Jason

As a web developer, there will come a time when you’ll need to work with money. Whether it’s for a fully operational shopping cart or a simple calculator, PHP makes this an incredibly simple process.

9 Comments (Talk about it now)

How do I print the date using PHP?

Monday, September 5th, 2005 by Chris Jason

PHP offers an excellent built-in function for printing dates. Here are some of the most common date formats and how you can print them using PHP.

No Comments (Talk about it now)

Articles By Category

Stay Updated