A small PHP web app that collects a student name and 3 grades, calculates the average, and displays:
- pass/fail result
- performance level (Fail / Good / Very Good / Excellent)
- Form input (name + 3 grades)
- Average calculation
- Result message and performance category
- Basic validation (empty fields, grade range)
- PHP
index.php— Form pageresults.php— Processes input and shows resultsfunctions.php— Helper functions (average, performance, messages)
- Install PHP.
- Open a terminal in the project folder and run:
php -S localhost:8000