After installing PHP, you need to restart the ______ to make sure the changes take effect.
- computer
- PHP interpreter
- database server
- web server
After installing PHP, especially when installing as a module for a web server like Apache or Nginx, you need to restart the web server to ensure that it recognizes and implements the changes. This is because the server needs to load the PHP module into its memory space to be able to process PHP files. Learn more: https://www.php.net/manual/en/install.general.php
Loading...
Related Quiz
- Which of the following statements in PHP can output strings, variables, and HTML code?
- How do you handle errors when using mail functions in PHP?
- What function do you use in PHP to establish an HTTP connection and fetch the content of a web page?
- Can a PHP class have more than one constructor?
- You are writing a PHP script and you want to execute a block of code a certain number of times. Which type of loop would you use and why?