I have the following after successfull login
$_SESSION["FirstName"] = $data["FirstName"];
$_SESSION["LastName"] = $data["LastName"];
$_SESSION["fldgroup"] = $data["fldgroup"];
$_SESSION["fldemail"] = $data["fldemail"];
$_SESSION["flddivision"] = $data["flddivision"];
$_SESSION["fldgroup"] = $data["fldgroup"];
$_SESSION["EmployeeID"] = $data["EmployeeID"];
$_SESSION["team"] = $data["team"];
$_SESSION["userid"] = $data["userid"];
All set as case sensitive / same as Employees table for login.
My fields that are FirstName , LastName , flddivision fill in correctly .
Fields fldgroup , fldemail , fldteam will not fill . All set up the same way default value on add page and readonly on the edit page .
I have them all setup as default value on add for example $_SESSION["fldemail"] , but just doesn't fill.
All coming from the employee table which is used for the dynamic login table. Worked on this for hours don't have a clue.