I keep getting this error message: Parse error: syntax error, unexpected 'Your' (T_STRING) in C:\xampp\htdocs\Salary.php on line 8.
<?php
$h=$_GET['hours'];
$r=$_GET['rate'];
$p=$_GET['pay'];
if ($h <= 40){
$submit = ("$p = $h * $r)
echo "Your Weekly Salary Is: $p;
}
if ($h > 40){
$submit = ("$p = ($h *$r) + (($h - 40) * $r * 1.5)")
echo "Your Weekly Salary Is: $p;
}
?>