Question
File: fixit3.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: fixit3.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. Hint: each of the lines is associated with accessing the text file that we opened in line 23, which file is that? -->
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started