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 Web site read the source code of PHP script you have successfully installed? |
Answers
A1: | You can get help on configuration options by calling the configure script in the PHP distribution folder and passing it the --help argument:
|
A2: | The lineensures 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. |