Those goofballs that wrote the book gave you farse information!
php.net is THE place to go. Anything and everything about php is there. Download the build that is suitable for your system. If you're on Windows there are Windows installers available from the PHP.net site that are just about idiot proof. Download the latest non-beta version which will be the most stable.
After installing come back to the p2p site and do some research on a PHP configuration directive called register_globals. You're going to need this information to do *most* of the examples in the book.
http://www.google.com/search?q=regis...e:p2p.wrox.com
There is also an error_reporting directive in the configuration file that is set to E_ALL, which you will also experience woes with when attempting the book's examples.
If you're on Windows the configuration file is called 'php.ini' and is located in the C:\Windows directory (or wherever the Windows directory is located). This file can be opened and edited in notepad. To get started you can reset the value of error_reporting to say the following:
error_reporting = E_ALL & ~E_NOTICE
and the register_globals directive to say the following:
register_globals = On
This will at least allow you to work a few examples. After you feel a little more confident with your undertanding of PHP I strongly urge you to reset these values back to their default state as this is not only the future of PHP, the register_globals directive is deprecated (meaning slated for deletion). You can find loads of information on p2p of exactly how to write your code to work with these.
Here's a list of URLs to get you started:
http://p2p.wrox.com/archive/beginnin...2002-11/17.asp
http://p2p.wrox.com/archive/beginnin...2002-09/63.asp
http://p2p.wrox.com/archive/beginning_php/2003-02/3.asp
http://p2p.wrox.com/topic.asp?TOPIC_ID=4017
: )
Rich
:::::::::::::::::::::::::::::::::
Smiling Souls
http://www.smilingsouls.net
:::::::::::::::::::::::::::::::::