A compilation of resources and completed exercises from learning PHP with The PHP Manual, learn-php.org, phptherightway.com, W3 Schools PHP Tutorial, and other sources.
To run the Hello App with PHP's built-in web server, navigate to src/opt:homebrew/Cellar:nginx:1.29.0/html and run:
php -S localhost:8000
Then open localhost:8000 in a web browser.
To run the control structures app with PHP's built-in web server, navigate to src/controlStructures, and run:
php -S localhost:8000
Then open localhost:8000 in a web browser.