Workshop


The workshop is designed to help you anticipate possible questions, review what you've learned, and begin putting your knowledge into practice.

Quiz

1.

From a Linux/UNIX operating system, how would you get help on configuration options (the options that you pass to the configure script in your PHP distribution)?

2.

What line should you add to the Apache configuration file to ensure that the .php extension is recognized?

3.

What is PHP's configuration file called?

4.

Can a person browsing your website read the source code of PHP script you have successfully installed?

Quiz Answers

1.

You can get help on configuration options by calling the configure script in the PHP distribution folder and passing it the --help argument:

./configure --help


2.

This line ensures that Apache will treat files ending with the .php extension as PHP scripts:

AddType application/x-httpd-php .php


3.

PHP's configuration file is called php.ini.

4.

No, the user will see only the output of your script.

Activities

  1. Install PHP on your system. If it is already in place, review your php.ini file and check your configuration.

  2. Familiarize yourself with the process of creating, uploading, and running PHP scripts. In particular, create your own "hello world" script. Add HTML code to it, and add additional blocks of PHP. Experiment with the different PHP delimiter tags. Which ones are enabled in your configuration? Take a look at your php.ini file to confirm your findings. Don't forget to add some comments to your code.




Sams Teach Yourself PHP, MySQL And Apache All in One
Sams Teach Yourself PHP, MySQL and Apache All in One (3rd Edition)
ISBN: 0672328739
EAN: 2147483647
Year: 2004
Pages: 327

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net