Can anyone please explain how I can fix this.
I want to simplify a project by using an .inc file for a common table. Unfortunately this table is used for both input and output.
To commonise the table for both functions I want to remove the 'value=\"$row->Mobile\"' attribute from the input tag. To get around this and try to get the form to output the results when needed I have tried both
$FirstName= ($row["FirstName"]);
and
$FirstName= ($row->FirstName);
but neither seems to work. Any ideas?