|
|||
|
Installing Web Stack Components Initializing the Development Environment Starting and Stopping Apache HTTPd and MySQL Servers Customizing Web Stack Components |
Testing the Development EnvironmentTo test whether the development environment you have set up is working fine, perform the following simple steps: To Test the Development EnvironmentBefore You Begin
Next StepsSuccess! Note that the web page contents enclosed within the <?php and ?> de-limiters were interpreted by the PHP interpreter at the time the Apache Web Server served up that page. The output of those PHP language statements were substituted into the HTML stream at that location. All other HTML content is served up to the web browser as in static web pages. Now, reload your browser but make sure that your browser does not use its cache; in most browsers, you can reload the browser by holding down the Alt key while clicking the Reload button. You see the same result, but with a later time. Thus you can see that a PHP page gets executed every time it is displayed (barring local browser caching, which you can suppress through PHP directives), and that you, as a developer, can generate highly dynamic content. |
||
|