Question: PHP help, I seem to be getting stuck with getting this program to come to life. Create a form to allow the user to enter
PHP help, I seem to be getting stuck with getting this program to come to life.
Create a form to allow the user to enter employees name, pay rate, and weekly hours work. That information will be sent to a PHP script that will process and display the employees paycheck information. Your assignment should have two pages. The first page is straight HTML (users_input.html) that has a form with the appropriate form elements to collect the user input. The form should then be submitted using the POST method to a PHP script (show_paycheck.php) that will process the user input.

users_input.html
The PHP script (show_paycheck.php) will receive the user input, assign it to variables, calculate and display the following pay check information:
Gross Pay (hours worked times pay rate)
Federal Taxes (10.65% of Gross Pay)
State Taxes (4% of Gross Pay)
Social Security Taxes (3.8% of Gross Pay)
Medicare (1.3% of Gross Pay)
Total Taxes (Federal + State + Social Security + Medicare)
Net Pay (Gross Pay Total Taxes
For all the above calculations, will be assigned to variables that have descriptive names. The PHP script should calculate and display the results in the following format. The left column of the table must be bold and left justified, and the right column is right justified. There is also a link to return back to the users_input.html page.

show_paycheck.php example
lease enter employee info First Name: Last Name: Weekly Hours Worked: Hourly Rate S: Submit Reset
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
