Question: File: fixit4.php Purpose: What's wrong here? This program is supposed to open a file for reading, read three wage amounts from the file, close the
File: fixit4.php Purpose: What's wrong here? This program is supposed to open a file for reading, read three wage amounts from the file, close the file, calculate the total and average, and display the three wages, total and average. But when the program runs, error messages are generated for lines 24 - 26.
-->
WAGE REPORT
$totalWages = $wage1 + $wage2 + $wage3; $avgWage = $totalWages/3;
print("
Wage #1: $$wage1 "); print("Wage #2: $$wage2 "); print("Wage #3: $$wage3
"); print("TOTAL WAGES PAID: $$totalWages
"); print("AVERAGE WAGE: $$avgWage
"); ?>Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
