The workshop is designed to help you anticipate possible questions, review what you've learned, and begin putting your knowledge into practice.
| 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 Web site read the source code of PHP script you have successfully installed? |
| A1: | 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 |
| A2: | The line AddType application/x-httpd-php .php ensures that Apache will treat files ending with the .php extension as PHP scripts. |
| A3: | PHP's configuration file is called php.ini. |
| A4: | No, the user will see only the output of your script. |