An Introduction to PHP

Learning PHP is a big step for anyone to take.  With PHP, you can extend WordPress by writing your own plugins or perhaps you want to write a web application that solves a problem.

Hello World!

Just about every programming book starts with the “Hello World!” application. The following will display “Hello World!” in the browser: echo “Hello World!”;

There you have it. Your very first PHP application.

For more information on how you can learn PHP in 17 hours click here.

<?php
echo "Hello World!";
?>




Leave a Reply