Can anyone help me with this:
$save="INSERT into employee
(FirstName,LastName,Phone,Email,Based)
VALUES(isset'$FirstName','$LastName','$Phone','$Email','$Based'))
WHERE (isset($employid=$employid))";
Each time I run this code I keep getting undefined variables errors on each of the values. Each field that is called is written as below. I've tried everything I can think of but can't work this out.
echo "<th width=\"40%\" >First Name</th>";
print ("<td><input type=\"text\" name=\"FirstName\" size=\"40\" maxlength=\"50\" name=\"FirstName\" value=\"$row[FirstName]\" >\n");
Thanks in advance, Jo
echo "</td>";