TweetFollow Us on Twitter

Getting Started with PHP

Volume Number: 20 (2004)
Issue Number: 11
Column Tag: Programming

Getting Started with PHP

by Dave Mark

Qne of the things I love most about writing this column is the opportunity to play with different technologies. I especially love it when this means playing with a technology that takes a sharp left turn from the traditional. A perfect example of this is PHP, a programming language that looks like C, smells like C, but takes C in a very different direction.

What Makes PHP Different

In most programming languages, the output from your program goes to the user, in some form or another. For example, in your Cocoa program, you might put up a window, then display some data in the window, perhaps with a scrollbar that lets the user scroll through the data and buttons that allows the user to accept the data or cancel whatever process brought up the data in the first place. The point is, some portion of your program is directly dedicated to interacting with the user.

PHP is different. Though PHP does sport a set of user interface functions, one of its strongest uses is as a means to dynamically generate web content. For example, suppose you were building a web site and you wanted to serve up one set of pages for folks running Safari and a different set of pages for other folks. There are lots of ways to do this, and PHP offers its own mechanism for doing this (and we'll take a look at this a bit later in the column).

More importantly, suppose you wanted to build a web site that was data-driven. For example, you might build a table that lists the most up-to-date statistics from your weekly Halo 2 league. You could embed the statistics directly in your HTML, or you could use PHP to build an interface to an open source database like mySQL or PostgreSQL. You'd write one PHP-laden web tool for entering the data, then another for displaying the data.

PHP is idea for managing HTML forms. Especially if you'll want to back your forms up to a database. Once you get a taste of PHP, you'll definitely want to play with it yourself. And the cool thing is, if you know a bit of C, you'll find PHP quite easy to pick up.

Installing PHP

In the golden, olden days of Mac OS X, installing PHP was a bit of an adventure. For starters, you downloaded the latest version of Apple's developer tools, then used Google or the like to find the most recent source code distribution of PHP that some kind soul had ported to Project Builder (later Xcode) format. Each source code distribution came with a set of scripts that would drive the process of compiling the source and installing the binaries in the right place. These scripts are known in the Unix world as makefiles. Once you downloaded the distribution that was right for your version of Mac OS X, you ran the makefile, got yourself a sandwich and, hopefully, by your last bite you had yourself an installed version of PHP. More often than not, however, you ran into a funky error that required you to tweak some permission or other, or perhaps rename a directory. Bottom line, this was not rocket science, but it was far from trivial.

Nowadays, PHP has really hit the mainstream. Soon after each rev of PHP or Mac OS X release, web pages pop up with instructions on the best way to install that version of PHP on your particular configuration of Mac OS X. Some folks even go to the trouble of creating traditional Mac OS X installers that do all the hard work for you.

I used Google to search for:

"php 5" "mac os x" 

Why php 5? When I wrote this article, PHP 5.0.2 was the latest release. By the time you read this, I suspect PHP 5.0.3 will be out, if not an even later version. But the major release will still likely be 5, so a search for PHP 5 will work.

The site I chose for this month's column has a packaged installer for PHP 5.0.1, as well as a forum section where you can message with other folks with similar experiences. Hopefully, by the time you read this, the installer will have been updated to the latest version, but for the purposes of this discussion, 5.0.1 will do just fine.

Here's the link to the main page:

http://www.entropy.ch/software/macosx/php/

Note that this install is for the version of PHP designed to work with the Apache web server that ships with Mac OS X. You are going to install PHP on your own machine, then put our php test pages in the Sites folder in your home directory. In effect, the Apache web server on your local machine will be serving up pages to you, without going over the net. This is a great way to learn PHP. With this setup, you can make changes to your code without using an FTP client. Just edit the file in place, save, then test. As long as you save your change, you don't even need to close the file before switching back to your browser to hit the reload button to retest the page. This is an extremely efficient way to work.

If this is still a bit confusing to you, not to worry. After we do the install, we'll run a few examples so you get the hang of working with PHP.

Figure 1 shows the install instructions from our download page. You'll want to click on the link labeled PHP 5.0.1 for Apache 1.3 (remember, the page might have been updated to a more recent version of PHP). Click the link and a disk image will be downloaded. It's about 20 megs, so it might take a while. Once the .dmg file downloads, the disk image will mount. Navigate into it and double click on the file named php-5.0.1.pkg (or whatever the .pkg file is called when you download it).


Figure 1 - Installation instructions for installing PHP

Follow the installation instructions and PHP should install without a hitch. To verify that the install went OK, fire up Terminal and enter these two commands:

ls -F /usr/local 
ls -F /usr/uocal/php5/ 

For you non-Unix folks, the ls command lists the contents of the specified directory or file. The -F option asks ls to put a * at the end of executable files and a / at the end of directories. This makes an ls listing a bit easier to understand.

Figure 2 shows my results after I did my PHP install. Note that PHP is installed in the directory /usr/local/php5/.


Figure 2 - A Terminal listing showing the location of the newly installed PHP files

To test the installation, create a plain text file using a tool like TextEdit, BBEdit, or Xcode. Be sure that your text files are plain text files. Personally, I use BBEdit for all my PHP and web editing. Here's a link to a page that will let you download a demo of BBEdit:

http://www.barebones.com/products/bbedit/ demo.shtml

Regardless of how you create the plain text file, here's what goes in it:

<?php phpinfo() ?> 

Save this line in a file named test.php and place the file inside the Sites directory in your home directory. It is critical that the file have the .php file extension so the Apache web server knows to pass the file through the PHP pre-processor before serving up the page. The PHP pre-processor will scan the file looking for PHP code to interpret. PHP code always starts with "<?php" and ends with "?>". You can have more than one block of PHP code in a single file. We'll show examples of this a bit further along in the article.

The line above contains a single PHP statement, a call of the function phpinfo(). This function returns a bunch of information about your PHP installation, all formatted in a two column HTML table. Why does the function return HTML? That's one of the most important aspects of PHP. Your PHP code will generate HTML code, which will appear in line with the HTML code in which it is embedded. Once the PHP code is done running and its output is incorporated into the surrounding HTML, the full HTML is returned by the server and rendered by your browser. Again, we'll get into this more later on in the article.

For the moment, save your one line php file into the Sites directory in your home folder. To test the file, use this link:

http://127.0.0.1/~davemark/test.php

Obviously, you'll replace "davemark" with your own user name. The 127.0.0.1 is an IP address that represents your local machine. The ~davemark represents the Sites directory of the user davemark. And, of course, the file name test.php is the file we are passing along to the Apache web server.

Figure 3 shows the output when I ran test.php on my machine. Obviously, this is just the first few lines of a very long series of tables.


Figure 3 - The output from phpinfo().

Hello, World!

Our next example shows what happens when we mix PHP and HTML. Create a new plain text file and type in this code:

<html>
	<head>
		<title>PHP Test</title>
	</head>
	<body>
		<p>This is some pure HTML loveliness.</p>
		<?php
			echo "<p>Hello, World!</p>";
		?>
		<p>Did we echo properly?</p>
		<?php
			echo date("r");
		?>
		<p>It works!!!</p>
	</body>
</html>
</PRE>

Save the file as hello.php and save it in your Sites directory. When you send this file to Apache, Apache will note the .php file extension and send the file to the PHP pre-processor. The pre-processor will scan the file, copying the HTML to its output as is, until it encounters the open PHP tag:

<?php 

As soon as it hits the end of those characters, the pre-processor starts interpreting the rest of the file as PHP code, until it hits the close PHP tag:

?> 

Once it hits that close tag, the processor runs the PHP code it just scanned and places the output from the PHP code following the HTML code it just copied. In the hello.php example, this means executing this statement:

echo "<p>Hello, World!</p>"; 

and copying the output from that statement into the HTML stream. The echo command simply copies its parameters to output, where it joins the HTML stream.

Once the close PHP tag is encountered, the pre-processor continues copying the HTML to its output until it hits the end of the code or encounters another open PHP tag.

Note that our example has two chunks of PHP code. The second chunk executes this line of code:

echo date("r");

The first version of echo you saw copied the text string to output. This version of echo has a function as a parameter. In that case, the PHP pre-processor calls the function and returns the output of the function call as input to echo. echo simply echoes that output to the HTML stream.

Confused? Type in this link to execute your copy of hello.php. Be sure to replace my user name with your user name:

http://127.0.0.1/~davemark/hello.php

The output of this example is shown in Figure 4.


Figure 4 - hello.php in action.

To get a true sense of this process, choose View Source from Safari's View menu. This will show you the merged PHP output and HTML code. Here's my merged source:

<html>
	<head>
		<title>PHP Test</title>
	</head>
	>body>
		<p>This is some pure HTML loveliness.</p>
		<p>Hello, World!</p>		<p>Did we echo properly?</p>
		Fri,  1 Oct 2004 11:01:48 -0400		<p>It works!!!</p>
	</body>
</html>

Notice that the output from the PHP commands is right there in the mix. One bit of funkiness, though. Notice that the PHP generated HTML did not include a carriage return, so the follow-on HTML starts on the same line as the end of the PHP output. In this line of output:

		<p>Hello, World!</p>		
		<p>Did we echo properly?</p>

you can see that the two paragraphs are on the same line of source. This will not affect the final output, but it does make the source a bit harder to read. An easy solution to this is to embed a carriage return character "\n" at the end of each line of PHP output.

Here's a new version of hello.php:

<html>
	<head>
		<title&lgt;PHP Test</title>
	</head>
	<body>
		<p>This is some pure HTML loveliness.</p>
		<?php
			echo "<p>Hello, World!</p>\n";
		?>
		<p>Did we echo properly?</p>
		<?php
			echo date("r");
			echo "\n";
		?>
		<p>It works!!!</p>
	</body>
</html>

Note that we added the "\n" directly at the end of the first echo's parameter string. Since the second echo did not use a string, we added a second line of code, just to echo the "\n".

When you run this chunk of code, the output will be the same. But let's take a look at the source code that is generated when you do a View Source:

<html>
	<head>
		<title>PHP Test</title>
	</head>
	<body>
		<p>This is some pure HTML loveliness.>/p>
		<p>Hello, World!</p>
		<p>Did we echo properly?</p>
		Fri,  1 Oct 2004 11:39:16 -0400
		<p>It works!!!</p>
	</body>
</html>

Notice that the carriage returns we added made the intermediate source a bit easier to read.

Include Other PHP Files

Here's another example, for you folks who like the organizational power of include files. This one is a slight mod of one from the php.net site. Create a new file named vars.php and type in the following code:

<?php
	$color = 'green';
	$fruit = 'apple';
?>

Save the file in the Sites folder and create a second new file named inc_test.php. Here's the code:

<html>
	<head>
		<title>PHP Include Test</title>
	</head>
	<body>
		<?php
			echo "<p>A $color $fruit</p>"; // A
			include 'vars.php';

			 echo "<p>A $color $fruit</p>"; // A green apple
		?> 
	</body>
</html>

Save this file in the Sites folder as well. Run this example by typing in:

http://127.0.0.1/~davemark/inc_test.php

Remember to replace davemark with your username. Your output should look like this:

A

A green apple

In a nutshell, inc_test.php is made up of two identical echo statements, with an include statement in between. The echo statements print the value of two variables, each of which is set in the include file. Notice that the first echo does not have values for $color and $fruit and does not print anything for those values. The second echo occurs after the include file. Since the include file sets the values for the variables, the second echo prints those values.

This example was included as a bit of food for thought. Many web sites achieve their unified look and feel through included header, nav bar, and footer files, as well as through a judicious use of variables. No doubt you'll want to take advantage of include files and variables as you build your own PHP projects.

Restarting Apache

If you happened to reboot your machine since you did the PHP install, you may have noticed that Apache is no longer running. Not to worry. There are two easy ways to restart the server. The simplest way is to select System Preferences... from the apple menu, then select the Sharing icon. On the Sharing page, click on the Services tab and make sure the Personal Web Sharing checkbox is checked. As soon as you check the checkbox, Apache will be started and the Start button will change to Stop so you can stop the server. Unless Apache runs into a problem at restart, it should be restarted automatically when you restart your machine.

Another way to start and stop the server is by using the apachectl command in Terminal. Start up Terminal and type in this command:

sudo apachectl restart

You'll be prompted for your admin password, since the sudo command executes a shell with root privileges. Type in the password and the Apache server will be stopped (if it is running) and restarted. Either way works just fine.

Till Next Month...

We'll be doing a bit more with PHP next month. In the meantime, check out the web site http://www.php.net, the official web site for PHP developers. There are a ton of resources on this site, including complete on-line and downloadable PHP documentation. To figure out why the date() function did what it did, find the search field at the top right of the main page and type in the word "date", make sure the popup menu says "function list", then hit return or click on the right arrow icon. This will take you to the "date" documentation.

Check out all the format character options in Table 1 and play with a few of them. Enjoy, and I'll see you next month.

Oh, if you haven't done so already, be sure to head over to http://spiderworks.com and sign up. The new version of Learn C


Dave Mark is a long-time Mac developer and author and has written a number of books on Macintosh development. Dave has been writing for MacTech since its birth! Be sure to check out Dave's latest and greatest at http://www.spiderworks.com.

 
AAPL
$441.50
Apple Inc.
-1.43
MSFT
$35.00
Microsoft Corpora
-0.08
GOOG
$903.20
Google Inc.
-5.33

MacTech Search:
Community Search:

Software Updates via MacUpdate

KeyCue 6.5 - Displays all menu shortcut...
KeyCue helps you to use your OS X applications more effectively. Just hold down the Command key for a while - KeyCue comes to help and shows a table of all currently available keyboard shortcuts.... Read more
Cobook Contacts 1.2.6 - Intelligent addr...
Cobook Contacts is a better address book that makes contact management enjoyable for millions of people every day. Find contacts faster and organize them with tags. Get integrated social profiles... Read more
AppDelete 4.0.7 - Delete your unwanted a...
AppDelete is an uninstaller for Macs that will remove not only applications but also widgets, preference panes, plugins and screensavers along with their associated files. Without AppDelete these... Read more
OnyX 2.6.9 - Maintenance and optimizatio...
OnyX is a multifunctional utility for OS X. It allows you to verify the startup disk and the structure of its System files, to run miscellaneous tasks of system maintenance, to configure the hidden... Read more
Apple iTunes 11.0.3 - Manage your music,...
Apple iTunes lets you organize and play digital music and video on your computer. It can automatically download new music, app, and book purchases across all your devices and computers. And it's a... Read more
Spotify 0.9.0.133. - Stream music, creat...
Spotify is a new way to enjoy music. Simply download and install. Before you know it you'll be singing along to the genre, artist, or song of your choice. With Spotify you are never far away from... Read more
JollysFastVNC 1.46 - Fast VNC client. (S...
JollysFastVNC is a VNC client which aims to become the best VNC client on the Mac. When I started ScreenRecycler I thought that there are enough VNC clients out there to support it. When the program... Read more
Skitch 2.5.2 - Take screenshots, annotat...
Skitch allows you to take screenshots on your Mac, edit them and share them with others. It makes the sharing process seamless by making it a natural workflow to send the image (with edited arrows... Read more
Backblaze 2.1.0.608 - Online backup serv...
Backblaze is an online backup service, available fo $5/month for unlimited storage. With half of the founding team heralding from Apple, Backblaze is deeply committed to the Mac platform. The... Read more
The Cave 1.0.0 - Adventure game featurin...
The Cave is an adventure game that offers a unique blend of fast-paced action, mind-bending puzzles, and winning humor. Assemble your team and embark on a journey into the shadowy underworld. Once... Read more

NonoCube Review
NonoCube Review By Rob Rich on May 21st, 2013 Our Rating: :: CUBE LOVEUniversal App - Designed for iPhone and iPad Nonograms in 3D are just as awesome as they are in 2D.   | Read more »
Khan Academy Review
Khan Academy Review By David Rabinowitz on May 21st, 2013 Our Rating: :: LEARN ANYTHINGUniversal App - Designed for iPhone and iPad Khan Academy is a popular and free online collection of education videos. The app is a quick and... | Read more »
Street Fighter IV Is Part Of Capcom’s Su...
Street Fighter IV Is Part Of Capcom’s Summer Kickoff Sale, Now Only $0.99 Cents Posted by Andrew Stevens on May 21st, 2013 [ permalink ] | Read more »
PhotoNova+ 2 Review
PhotoNova+ 2 Review By Angela LaFollette on May 21st, 2013 Our Rating: :: ALMOST PICTURE PERFECTiPhone App - Designed for the iPhone, compatible with the iPad A free powerful photo editing app that offers plenty of impressive tools... | Read more »
Slice Can Track Your Shipments On A Sing...
Slice Can Track Your Shipments On A Single Map Posted by Andrew Stevens on May 21st, 2013 [ permalink ] iPhone App - Designed for the iPhone, compatible with the iPad | Read more »
Caveman Golf Review
Caveman Golf Review By Jennifer Allen on May 21st, 2013 Our Rating: :: BOGEYiPhone App - Designed for the iPhone, compatible with the iPad Flawed and a little rough and ready, Caveman Golf still has enough going for it to intrigue... | Read more »
Tomb Breaker Review
Tomb Breaker Review By Jennifer Allen on May 20th, 2013 Our Rating: :: SIMPLE MATCHINGUniversal App - Designed for iPhone and iPad Tomb Breaker keeps it simple with gameplay just a matter of matching up gems and nothing more. It’s... | Read more »
Jacob Jones And The Bigfoot Mystery Revi...
Jacob Jones And The Bigfoot Mystery Review By Jennifer Allen on May 20th, 2013 Our Rating: Universal App - Designed for iPhone and iPad Charming and cute, Jacob Jones and the Bigfoot Mystery also offers some fun puzzles and... | Read more »
Equilibrium Review
Equilibrium Review By David Rabinowitz on May 20th, 2013 Our Rating: :: PARTICLE PHYSICSiPhone App - Designed for the iPhone, compatible with the iPad Equilibrium is a physics-based puzzler with a unique and innovative story... | Read more »
Gravity Guy 2 Review
Gravity Guy 2 Review By Jennifer Allen on May 20th, 2013 Our Rating: :: STEADY RUNNINGUniversal App - Designed for iPhone and iPad With not much in common with its predecessor, Gravity Guy 2 is a fairly run of the mill Endless... | Read more »

Price Scanner via MacPrices.net

MacBook Airs (Apple refurbished) available startin...
 The Apple Store has Apple Certified Refurbished 2012 MacBook AIrs available for up to $240 off MSRP, with models starting at $849. An Apple one-year warranty is included with each model, and... Read more
Updated Mac Pro, iMac, and Mac mini Price Trackers
We’ve updated our Mac Pro Price Tracker, iMac Price Tracker, and Mac mini Price Tracker with the latest information on prices, bundles, and availability from Apple’s Authorized Internet/Catalog... Read more
Updated MacBook Price Trackers
We’ve updated our MacBook Price Trackers with the latest information on prices, bundles, and availability on MacBook Airs, MacBook Pros, and the MacBook Pros with Retina Displays from Apple’s... Read more
15″ 2.3GHz MacBook Pro on sale for $1659 w/free bu...
B&H Photo has the 15″ 2.3GHz MacBook Pro on sale for $1659 including free shipping. Their price is $140 off MSRP. B&H will include free copies of Parallels Desktop, Bento Database, and LoJack... Read more
15-inch Retina MacBook Pros on sale for $200 off M...
 B&H Photo has 15″ Retina MacBook Pros on sale for $200 off MSRP including free shipping. B&H will also include free copies of Parallels Desktop, Bento Database, and LoJack for Laptops... Read more
Apple refurbished iPad minis available starting at...
The Apple Store has a full lineup of Apple Certified Refurbished iPad minis available starting at $299 – up to $40 off new models. Apple’s one-year warranty is included with each mini, and shipping... Read more
MacBook Air Inventory Shrinking In Leadup To Apple...
Appleinsider’s Neil Hughes reports that with Intel’s next-generation Haswell processors set to launch in a couple of weeks and Apple’s Worldwide Developers Conference (WWDC) coming next month,... Read more
Battle Of The 13-inch MacBooks: Which One To Buy?
iMore’s Peter Cohen has posted a comparitive profile of Apple’s three current distinct 13-inch display notebook models – the MacBook Air, the MacBook Pro and the MacBook Pro with Retina Display... Read more
Lenovo Launches Yoga 11S Windows 8 Convertible
Lenovo has announced that customers can now place orders for the IdeaPad Yoga 11S on http://www.lenovo.com or pre-order on http:/www.bestbuy.com. The 360 flip and fold Yoga 11S hybrid premiered in... Read more
Apple now offering full line of refurbished iMacs...
Apple has Apple Certified Refurbished 2012 iMacs in stock today for up to $330 off MSRP – 15% off. Each iMac comes with an Apple one-year warranty, and shipping is free: - 21″ 2.7GHz iMac: $1099 $100... Read more

Jobs Board

Class 1 District *Apple* Technician -...
QUALIFICATIONS: High School diploma Associate Degree in Technology preferred. Apple Certified Support Professional Mac OS X 10.5, 10.6, 10.7, 10.8 Apple Certified Read more
*Apple* Infrastructure Engineer II - Ba...
39964 Apple Infrastructure Engineer II Full Time Regular posted 04/22/2013 San Ramon, CA San Francisco, CA Requirements What sets Bank of the West apart from other banks Read more
*Apple* Retail - Manager - Apple (Unite...
Job SummaryKeeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, youre a master of them all. In the stores fast-paced, dynamic Read more
*Apple* At-Home Team Manager - Apple (U...
Changing the world is all in a day's work at Apple . If you love innovation, here's your chance to make a career of it. You'll work hard. But the job comes with more than Read more
*Apple* Retail - Manager - Apple Inc. (...
Job SummaryKeeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, you're a master of them all. In the store's fast-paced, dynamic Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.