Hi, I have this html and php doc. I simply want it to echo an input from the form but when I run the html form and Submit, it gives me error: Object not found! Error 404.
Please help.
[code]
BloggsCo PayrollBloggsCo Payroll System
| Please enter employee pay details | |
| Employee ID | |
| Firstname | |
| Surname | |
| Rate of pay (p/hour) | $ |
| Hours worked | |
| Salaried? | (tick for Yes) |
[/code]
[php]<?php
if(isset($_POST[‘EmployeeID’])){
echo $_POST[‘EmployeeID’];
}
?> [/php]